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

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    z-index: 0;
    animation: waveDown 1.2s ease-in-out;
}

@keyframes waveDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mascote-saude {
    position: fixed;
    bottom: 60px;
    right: 0;
    width: 220px;
    height: auto;
    z-index: 1000;
}

.mascote-engenharia {
    position: fixed;
    bottom: 60px;
    right: 180px;
    width: 200px;
    height: auto;
    z-index: 1000;
}

.gradient-form {
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #F1F1F1;
}

.login-side {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: formEntrada 0.7s ease forwards;
}

@keyframes formEntrada {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    position: fixed;
    bottom: 400px;
    right: 100px;
    width: 200px;
    height: auto;
    z-index: 1000;
}

.logo img {
    width: 190px;
}

h3 {
    position: relative;
    font-weight: 600;
    font-size: 19px;
    color: #F1AE33;
    margin-bottom: 30px;
}

h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: #F1AE33;
}

.login-side form p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-login {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    background-color: #F1AE33;
    border: none;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(241, 174, 51, 0.35);
}

.input-senha .toggle-senha {
    color: #F1AE33;
}

.input-senha {
    position: relative;
}

.input-senha input {
    padding-right: 48px;
}

.input-senha .toggle-senha {
    margin-right: 12px;
    cursor: pointer;
    color: #8A94A6;
    display: flex;
    align-items: center;
}

.required {
    color: red;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid #8A94A6;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
}

.input-icon {
    background: #FFFFFF;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8A94A6;
    min-width: 55px;
    position: relative;
    border-right: none;
}

.input-icon::after {
    content: '';
    position: absolute;
    right: 0;
    height: 80%;
    width: 3%;
    background-color: #8A94A6;
}

.input-wrapper input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 15px;
}

.input-wrapper input:focus {
    outline: none;
}

.esqueceu-senha {
    text-align: center;
}

.esqueceu-senha a {
    color: #000000;
}

/* BLOCO COLORIDO DAS REDES SOCIAIS */
.social-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #F1AE33 0%, #F1AE33 20%, #53A5A6 50%, #88A6BB 80%, #53A5A6 100%);
}

#social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#social-media a {
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

#social-media a:hover {
    transform: scale(1.15);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 1120px) {
    .mascote-saude,
    .mascote-engenharia {
        width: 40%;
        max-width: 180px;
    }

    .logo {
        position: fixed;
        right: 80px;
    }
}

@media (max-width: 880px) {
    .logo,
    .mascote-saude,
    .mascote-engenharia {
        display: none;
    }

    .row {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 980px) {
    .logo {
        position: fixed;
        right: 60px;
    }
}