@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: 500;
    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;
    /* border: 1px solid white; */
    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;
    /* height: 500px; */
    background-color: rgba(255, 255, 255, 0.2);    
    /* border: 3px solid red; */
    padding: 35px;
    padding-top: 50px;
    border-radius: 10px;
    border: 2px solid #b4848416;
}

.log-in-title {
    display: inline-block;
    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;
    /* margin-bottom: 34px; */
    border-radius: 8px;
    
}

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

.log-in-button {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: block;
    border-radius: 8px;
}

.need-register-button {
    margin-top: 15px;
    color: white;
}

.need-forget-password-button {
    margin-top: 15px;
    color: white;
}
