/* Reutilizamos el fondo del Home para consistencia */
.gradient-container {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at top right, #89c606 0%, #138243 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

/* Tarjeta de registro blanca y suave */
.register-card {
    background: white;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Header del Formulario */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.mini-logo {
    width: 50px;
    margin-bottom: 10px;
}

.brand-title {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.brand-header p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Inputs mejorados */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: #444;
        margin-bottom: 8px;
        margin-left: 5px;
    }

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #89c606;
    font-size: 1rem;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Espacio para el icono */
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    font-size: 0.95rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

    .input-icon-wrapper input:focus {
        border-color: #89c606;
        background: white;
        outline: none;
        box-shadow: 0 0 0 4px rgba(137, 198, 6, 0.1);
    }

/* Botón de envío */
.btn-submit {
    width: 100%;
    background: #138243;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: transform 0.2s, background 0.2s;
}

    .btn-submit:hover {
        background: #89c606;
        transform: translateY(-2px);
    }

.icon-arrow {
    font-size: 0.9rem;
}

/* Enlace inferior */
.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    color: #777;
}

    .form-footer a {
        color: #138243;
        text-decoration: none;
        font-weight: 700;
    }

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #999;
}
