@import url('https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: "Mozilla Text", sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(img/fundo.jpg);
    background-size: cover;
    background-position: center;
}

.container{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 2);
    border-radius: 10px;
    color: #000000;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 2);
    backdrop-filter: blur 50px;
}

.container h1{
    font-size: 36px;
    text-align: center;
}

.input-box{
    position: relative;
    width: 80%;
    height: 10px;
    margin: 80px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 2);
    outline: none;
    font-size: 16px;
    color: #000000;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: #000000;
}

.input-box i {
    position: absolute;
    right: -40px;
    top: 20px;
}

.Remember{
    display: flex;
    justify-content:space-between;
    margin: -15px 0 15px;
}

.Remember label input{
    accent-color: rgb(128, 128, 128);
    margin-right: 5px;
}

.Remember a{
    text-decoration: none;
    color: #616161;
}

.Remember a:hover{
    text-decoration: none;
    color: #000000;
}

.Login{
    width: 100%;
    height: 50px;
    background-color: #9e9e9e;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 2);
    margin-top: 20px;
}

.Login:hover{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 2);
    color: #303030;
    transition: 0.60s;
}

.Register {
    font-size: 14px;
    text-align: center;
    margin: 20px 0 15px;
}

.Register a{
    text-decoration: none;
    color: #616161;
    font-weight: 500;
}

.Register:hover{
    text-decoration: none;
    color: #000000;
    text-decoration: underline;
}
