/* Formularios centrados */
.form-container-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
}

.form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.form-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.form-logo {
    width: 180px;
    height: auto;
    cursor: pointer;
    transition: var(--transition);
}

.form-logo:hover {
    transform: scale(1.05);
}

.form-card {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.info-message {
    background-color: #ffffff;
    border-left: 3px solid #e74c3c;
    padding: 12px 15px;
    margin: 0 0 25px 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

h1 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 600;
    text-align: center;
}

h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666666;
    font-weight: normal;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555555;
    font-weight: 500;
}

input {
    width: 100%;
    height: 50px;
    padding: 0 45px 0 15px;
    border: 1px solid #3498db;
    border-radius: 4px;
    background: #ffffff;
    color: #333333;
    font-size: 16px;
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.card-icon {
    position: absolute;
    right: 15px;
    top: 38px;
    color: #888888;
    font-size: 20px;
}

/* Página de éxito */
.success-page {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--success-green);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Login footer */
.login-footer {
    margin-top: 30px;
    text-align: center;
    color: #666666;
    font-size: 1rem;
}

.login-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.login-link:hover {
    text-decoration: underline;
    color: var(--primary-red-dark);
}

/* Responsive */
@media (max-width: 600px) {
    .form-card {
        padding: 20px 15px;
    }
    
    .form-row {
        flex-direction: row;
        gap: 10px;
    }
    
    .form-logo {
        width: 140px;
    }
    
    input {
        height: 45px;
        font-size: 15px;
    }
    
    .btn-full {
        height: 45px;
        font-size: 15px;
    }
}
