body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/background.jpg) ;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    
}
.container{
    width: 400px;
    height: 440px;
    border: 0.5px  rgb(176, 176, 176);
    position: relative;
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .form-box{
    width: 100%;
    padding: 60px;
}
.form-box h1{
    text-align: center;
    font-size: 40px;
    
}
.input-box input{
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    background: transparent;
    font-size: 15px;
    font-weight: bold;
    font-family: sans-serif;
}
form>div:nth-of-type(3){
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

form>div:nth-of-type(5){
    text-align: center;
    

}

#cacc{

    color: purple;
    margin-left: 5px;
    font-size: 18px;
    

}
#cacc:active{
    color: red;
}

#fpass{

    color: purple;
    margin-left: 5px;
    font-size: 12px;
    
}

#btn{
    display: flex;
    justify-content: center;
}
button{
    padding: 10px 30px;
    border: none;
    font-size: 16px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 16px;

}

button:hover{
    background-color: rgb(100, 100, 100);
    
    cursor: pointer;

}
button:active{
    background-color: white;
    color: black;
    border: none;

}
#btn>button>a{
    text-decoration: none;
    color: white;
}
#btn>button>a:active{
    color: black;
}