html{
box-sizing: border-box;
}

*,
*::after,
*::before{
box-sizing: inherit;
margin: 0;

}

body{
    font-family: "Poppins", sans-serif;
    background-color: #080710;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    /* margin: 0; */

}




.container{
    display: flex;
    width: 400px;
    position: relative;

    
}

.container::before{
content: "";
display: block;
position: absolute;
width: 200px;
height: 200px;
border-radius: 100%;
background-image: linear-gradient(to right bottom,#2979FF,#00B0FF);
margin: auto 0;
left: -90px;
top: -80px;
z-index: -1;
}

.container::after{
    content: "";
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-image: linear-gradient(to right bottom,#FF6F00,#FF8F00);
    margin: auto 0;
    right: -90px;
    bottom: -80px;
    z-index: -1;
    }


.text-head{
font-size: 32px;
text-align: center;

}

.form-login{
    width: 100%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    padding: 50px 35px 35px 35px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
    color: #FAFAFA;

}
 
label{
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

input{
background-color:
 rgba(255, 255, 255, 0.07);
height: 50px;
font-weight: 300;
width: 100%;
margin-bottom: 30px;
padding: 0 10px;
font-size: 14px;
border-radius: 5px;
border: none;
font-family: inherit;
outline: none;
color: #FAFAFA;
}

::placeholder{
    color: #FAFAFA;
}

button{
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    font-family:"Poppins", sans-serif;
    outline: none;
}

