.card-reset-senha {
    width: 500px;            
    max-width: 720px;       
    margin: 30px auto 0 auto;
    padding: 30px;           
    background-color: #ffffff;
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border: none;
    margin-top: 150px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

#label-email-reset {
    font-size: 1.0rem;
    text-align: center;
    display: block;
    margin: 13px auto;
    color: #031D40;
}

#input-email-reset {
    font-size: 15px;
    padding: 10px;
    width: 300px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.4);
    color: #031D40;
    backdrop-filter: blur(4px);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.btn-reset-senha {
    background: linear-gradient(90deg, #031D40, #42e8e0);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-reset-senha:hover {
    background: linear-gradient(90deg, #42e8e0, #031D40); /* inverte o gradiente */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    cursor: pointer;
}


.logo-recuperar-senha {
    margin-top: 85px;
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.logo-recuperar-senha:hover {
    transform: scale(1.05);
    opacity: 1;
}


