@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(./img/rainbow_coloured_watercolour_texture_background_2907.jpg);
    background-size: cover;
    background-position: center;

}

.container {
    width: 400px;
    height: 480px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 10px;
    color: rgb(117, 117, 117);
    padding: 30px 40px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    backdrop-filter: blur(50px);
    margin-bottom: 50px;
}

.container h1 {
    font-size: 36px;
    text-align: center;
}

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

}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 3px solid rgb(238, 235, 235);
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    color: 	#3b3a3a;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #A9A9A9;
}

.fa-user {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size:20px;
}

.fa-lock {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size:20px;
}

.lembrar-senha {
    display: flex;
    justify-content: space-between ;
    color: #A9A9A9;
  

}




.lembrar-senha label input {
    accent-color: #fff;
    margin-right: 5px;

}

.lembrar-senha a {
    text-decoration: none;
    color: #A9A9A9;
}

.lembrar-senha a:hover {
    text-decoration: underline;
}

.login {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgb(238, 235, 235);
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.login:hover {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    transition: 0.5s;
    text-decoration: underline;
}

.registro {
    font-size: 14px;
    text-align: center;
    margin: 20px 0 15px;
    color: #A9A9A9;

}


.registro a {
    text-decoration: none;
    color:rgb(85, 85, 85) ;
    font-weight: 500;
}

.registro a:hover {
    text-decoration: underline;
}