﻿.forgot-modal-body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-form {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

    .forgot-form .form-group {
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .forgot-form label {
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .forgot-form input.form-control {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1.5rem;
    }

    .forgot-form .btn {
        display: inline-block;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
        border-radius: 6px;
        transition: all 0.2s ease-in-out;
    }

        .forgot-form .btn:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

.forgotPwd-box-msg {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: #555;
    text-align: center;
}

.modal-header {
    border-bottom: none;
    text-align: center;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 700;
    color: #002f5f;
}


.custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

/* Contenedor blanco centrado */
.custom-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 25px 30px;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}


/* Botón de cierre (X) */
.custom-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

    .custom-close:hover {
        color: #000;
    }

/* Formato base del formulario dentro del modal */
.custom-modal-content form {
    margin-top: 20px;
}

.custom-modal-content label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-modal-content input[type="text"],
.custom-modal-content input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.custom-modal-content .btn {
    margin-top: 15px;
    width: 100%;
}

