@font-face {
    font-family: "poppins";
    src: url("../fonts/ttf/Poppins-Regular.ttf") format("ttf");
}

:root {
    --body-color: #080710;
}

* {
    font-family: "poppins", sans-serif;
    font-weight: 450;
    box-sizing: border-box;
    margin: 0;
}

body {
    background-color: var(--body-color);
    display: flex;
    justify-content: center;
    margin: 50vh auto;
}

.container {
    width: 600px;
    height: 614px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circles {
}

.circle-1 {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(#0D47A1, #42A5F5);
    border-radius: 100%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, #E65100, #FFA726);
    border-radius: 100%;
    margin-right: 35px;
}

.log-in {
    z-index: 99999;
    box-shadow: 4px 4px 32px black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.log-in-form { 
    width: 400px;
    background-color: rgba(255, 255, 255, 0.2);    
    padding: 35px;
    padding-top: 50px;
    border-radius: 10px;
    border: 2px solid #b4848416;
}

.log-in-title {
    display: flex;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.log-in-inputs {
    color: white;
    font-size: 16px;
    margin-top: 20px;
}

.username {}
.Username-lable {
    display: block;
    margin-bottom: 8px;
}

.username input {
    background-color: rgba(255, 255, 255, 0.1);
    display: block;
    height: 50px;
    width: 100%;
    padding: 10px;
    font-weight: 300;
    margin-bottom: 34px;
    border-radius: 8px;
}

.username input::placeholder {
    color: white;
}

.password {}
.Password-lable {
    display: block;
    margin-bottom: 8px;
}

.password input {
    background-color: rgba(255, 255, 255, 0.1);
    display: block;
    height: 50px;
    width: 100%;
    padding: 10px;
    font-weight: 300;
    border-radius: 8px;
}

.password input::placeholder {
    color: white;
}

.log-in-button button {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.log-in-button button:hover {
    background-color: #0056b3;
}

.need-register-button {
    margin-top: 15px;
    text-align: center;
}

.need-register-button a {
    color: #fff;
    text-decoration: none;
}

.need-register-button a:hover {
    text-decoration: underline;
}

p.message {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

p.message.success { color: #00ff00; }
p.message.error { color: #ff4d4d; }
