
html {
    background-image: url(img/fundo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-container {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#form-container {
    width: 350px;
    display: flex;
    position: relative;
}

#form-container::before {
    border-radius: 50%;
    content: '';
    height: 100px;
    width: 100px;
    top: 36px;
    position: absolute;
    background: #c89116;
    box-shadow: -5px 0px 50px 40px #c89116;
    animation: floating 3s ease-in-out infinite alternate;
}

#form-container::after {
    border-radius: 50%;
    content: '';
    height: 100px;
    width: 100px;
    right: 0;
    box-shadow: -5px 0px 50px 40px #47c567;
    background: #47c567;
    bottom: 36px;
    position: absolute;
    z-index: -1;
    animation: floating 3s ease-in-out infinite alternate;
}

input:focus {
    outline: none;
}

#content {
    font-size: 2rem;
    border: 1px solid #626262c2;
    padding: 1.5rem;
    width: 100%;
    border-radius: 30px;
    background: #62626212;
    backdrop-filter: blur(20px);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.title-text {
    display: block;
    text-align: center;
    color: white;
    text-transform: uppercase;
}

.field {
    position: relative;
}

.field label {
    position: absolute;
    bottom: 0;
    margin-bottom: 5px;
    z-index: -1;
    transition: .4s;
}

.field input {
    color: white;
    border: none;
    border-bottom: 1px solid #3f3f3f;
    background: none;
    padding: 5px 0;
    margin-top: 32px;
    width: 100%;
}

.field input:focus+label,
.field input:valid+label {
    bottom: 25px;
    font-size: 13px;
}

#action {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 30px;
}

label {
    font-size: 14px;
    display: flex;
    color: #d0d0d0;
    cursor: pointer;
}

label input {
    margin-right: 3px;
    cursor: pointer;
}

#forget,
#signup a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

#signup a {
    padding: 10px;
}

#forget:hover,
#signup a:hover {
    color: rgb(186, 186, 186);
}

#login {
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: bold;
    width: 100%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    background: #ffffff;
    transition: .3s;
}

#login:hover {
    transform: scale(0.9);
}


#signup {
    color: #bcbcbc;
    font-size: 14px;
    text-align: center;
    margin-top: 25px;
}

@keyframes floating {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}