html{
    padding: 0%;
    margin: 0%;
}

*{
    padding: 0px;
    margin: 0px;

}
.container{
    background-color: rgb(1, 1, 1);
}

.container h1{
    text-transform: uppercase;
    padding-top: 10px;
    text-align: center;
    /*text-decoration: underline;*/
    color: #F58634;
    font-family: system-ui;
}

.container p{
    font-size: 20px;
    margin-top: 10px;
    color:  #F58634;
    text-align: center;
    font-family: system-ui;
    letter-spacing: 1px;
}
form{
    height: 450px;
    width: 400px;
    background-color: rgba(11,11,20,0.83);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 40%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
    margin-top: 2rem;
}

form *{
    font-family: 'Poppins',sans-serif;
    color: #efefef;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

form h3{
    font-size: 32px;
    
    line-height: 42px;
    text-align: center;
    color:#6bbbff ;
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.inputs{
    border-radius: 10px;
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.inputs i{
    color: rgba(255, 255, 255, 0.725);;
}

.inputs select{
    background-color:  rgba(255,255,255,0.13);
    border-radius: 3px;
}

.inputs select option{
    background-color:  rgba(255,255,255,0.13);
    border-radius: 3px;
}

.inputs select option{
    background-color: rgba(255,255,255,0.13);
}

input{
    display: block;
    height: 50px;
    width: calc(100% - 20px);
    background-color: rgba(255,255,255,0.37);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    border-collapse: collapse;
    border: 1px solid #bebebe;
}

::placeholder{
    color: #e5e5e5;
}

button{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff2e;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}