*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(255, 255, 255);
    background-image:linear-gradient(rgba(0, 0, 0, 0.765), rgba(0, 0, 0, 0.765)), url('embarquer.png');
    background-size: cover;
    background-position: center;
}

#container{
    width: 420px;
    color: white;
    background: transparent;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 40px;
}

#container h1{
    font-size: 40px;
    text-align: center;
}

#container .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    color: white;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: white;
    font-style: italic;
}

#container .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: -15px 0 15px;
}

.remember-forgot label input{
    margin-right: 5px;
}

.remember-forgot a{
    color: white;
    text-decoration: none;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

#container .btn{
    width: 100%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    color: #212121;
    font-weight: 600;
    transition: 0.6s ease;
}
#container .btn:hover{
    background: rgb(243, 187, 1);
    color: white;
    
    font-weight: 600;
}

#container .register{
    font-size: 14.5px;
    text-align: center;
    margin-top: 30px;
}

.register p a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}

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