* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.header-img {
    height: 50px;
    width: auto;
}

.header-img img {
    width: inherit;
    height: inherit;
}

main {
    background-color: #F4F6FB;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 30px);
}

footer {
    background-color: #F4F6FB;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    color: #8a8a8a;
}

.register-body {
    height: calc(100vh - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 500px;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.line-title {
    height: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.line-subtitle {
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 40px;
}

.logo-cadastro {
    width: 120px;
}

.logo img,
.logo-cadastro img {
    width: inherit;
}

.title {
    font-weight: 600;
    color: #6AB82E;
}

.flex {
    display: flex;
    width: 100% !important;
    gap: 6px;
}

.form label {
    position: relative;
}

.form label .input {
    width: 100%;
    height: 45px;
    padding: 10px 20px 10px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    font-size: 12px;
    color: #6AB82E;
}

.submit {
    border: none;
    outline: none;
    background-color: #6AB82E;
    padding: 10px;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
}

.submit:hover {
    cursor: pointer;
}

.form label .input:not(:placeholder-shown)+span,
.form label .input:focus+span,
.form label .input:valid+span {
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
    color: #6AB82E;
}

.form label {
    font-weight: bold;
    color: #6AB82E;
}

#emailHelp {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
}

.form label .input:disabled {
    background-color: #f0f0f0;
    color: #a0a0a0;
    border-color: #d0d0d0;
    cursor: not-allowed;
}

.input-label-email {
    width: 70%;
}

#alert {
    background-color: red;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    color: white;
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    display: none;
}

#success {
    background-color: #6AB82E;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    color: white;
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
}

#atencion {
    background-color: #6AB82E;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    color: rgb(255, 255, 255);
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
}

#error {
    font-size: 16px;
}

#text-troca-senha {
    font-size: 22px;
    color: #6AB82E;
    font-weight: 600;
    letter-spacing: -1px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-top: 20px;
}

#check_senha {
    font-size: 32px;
    color: #6ab82e;
}

.message-password {
    margin-top: 20px;
    color: rgba(88, 87, 87, 0.822);
    font-size: 20px;
    text-align: center;
}

.message-password a {
    color: #6ab82e;
    font-weight: bold;
}

#alert-password {
    background-color: red;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    color: white;
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

#alert-password h4 i {
    margin-right: 5px;
}

#alert-login,
#alert-bloqueio {
    background-color: red;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    color: white;
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 480px) {

    .logo-img {
        width: 80px;
    }

    .form {
        min-width: 350px !important;
        max-width: 35px !important;
        gap: 5px;
    }

    .form label .input {
        height: 35px;
    }

    .form label .input+span {
        top: 10px;
        font-size: 0.8em;
    }

    .form label .input:placeholder-shown+span {
        top: 10px;
        font-size: 0.8em;
    }

    .form label .input:focus+span,
    .form label .input:valid+span {
        font-size: 0.6em;
    }

    .form label {
        font-size: 14px;
    }

    .title {
        font-size: 19px;
    }

    .submit {
        font-size: 0.8em;
        height: 35px;
    }

    .message,
    .signin {
        font-size: 13px;
    }

    #alert-login,
    #alert-bloqueio,
    #alert-password {
        font-size: 13px;
    }

    footer {
        height: 70px !important;
    }
}

/* Smartphones (até 768px) */
@media (max-width: 768px) {
    .form {
        min-width: 450px;
        max-width: 450px;
        gap: 7px;
    }

    .line-title {
        height: 50px;
    }

    .logo-img {
        width: 80px;
    }

    .logo img {
        width: inherit;
    }

    .form label .input {
        height: 35px;
    }

    .form label .input+span {
        top: 10px;
        font-size: 0.8em;
    }

    .form label .input:placeholder-shown+span {
        top: 10px;
        font-size: 0.8em;
    }

    .form label .input:focus+span,
    .form label .input:valid+span {
        font-size: 0.6em;
    }

    .form label {
        font-size: 14px;
    }

    #alert-login,
    #alert-bloqueio,
    #alert-password {
        font-size: 15px;
    }

    footer {
        height: 70px !important;
    }
}

/* Tablets (entre 768px e 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {}

/* Laptops e desktops pequenos (a partir de 1024px) */
@media (min-width: 1024px) and (max-width: 1366px) {

    .form label .input,
    .submit {
        height: 55px;
    }

    .submit {
        font-size: 21px;
    }

    .form label .input+span {
        top: 10px;
        font-size: 1em;
    }

    .form label .input:placeholder-shown+span {
        top: 10px;
        font-size: 1em;
    }

    .form label .input:focus+span,
    .form label .input:valid+span {
        font-size: 8em;
    }

    .form label {
        font-size: 18px;
    }

    .message,
    .signin {
        font-size: 18px;
    }

    .title {
        font-size: 28px;
    }
}

/* Desktops grandes e telas maiores */
@media (min-width: 1366px) {}