/* =========================================================
   DIVINE MAGAZINE®: REGISTRATION SYSTEM
   Integrated Warm Terracotta & Archivo Style
   ========================================================= */

form#divine-registration-form {
    max-width: 520px;
    margin: 40px auto;
    font-family: 'Archivo', sans-serif;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(217, 124, 90, 0.15);
}

form#divine-registration-form p {
    margin-bottom: 24px;
}

form#divine-registration-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #3E2E1E; /* Deep warm brown */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --- Input Fields --- */
form#divine-registration-form input[type="text"],
form#divine-registration-form input[type="email"],
form#divine-registration-form input[type="url"],
form#divine-registration-form input[type="password"],
form#divine-registration-form textarea {
    width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
    border: 2px solid #FFD9C5;
    border-radius: 10px;
    background: #fdfcfb;
    color: #3E2E1E;
    font-family: 'Archivo', sans-serif;
    transition: all 0.25s ease;
}

form#divine-registration-form input:focus,
form#divine-registration-form textarea:focus {
    outline: none;
    border-color: #D97C5A;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217, 124, 90, 0.1);
}

/* --- Drag & Drop / File Input --- */
form#divine-registration-form input[type="file"] {
    background: #FFF8F0;
    border: 2px dashed #FFD9C5;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
}

form#divine-registration-form input[type="file"]:hover {
    border-color: #D97C5A;
    background: #F4E7DD;
}

/* --- The Submission Button --- */
form#divine-registration-form button {
    width: 100%;
    background: linear-gradient(90deg, #D97C5A 0%, #BF6A4D 100%);
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 999px; /* Pill Style */
    box-shadow: 0 10px 25px rgba(217, 124, 90, 0.35);
    transition: all 0.3s ease;
    margin-top: 10px;
}

form#divine-registration-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(217, 124, 90, 0.45);
    filter: brightness(1.1);
}

form#divine-registration-form button:disabled {
    background: #A89E9A;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* --- Helper Text --- */
form#divine-registration-form small {
    display: block;
    margin-top: 8px;
    color: #7B4B3A;
    font-style: italic;
    font-size: 0.85rem;
}

/* --- Success/Error Messages --- */
.registration-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.registration-success { background: #ecfdf3; color: #16a34a; border: 1px solid #16a34a; }
.registration-error { background: #fef2f2; color: #DC2626; border: 1px solid #DC2626; }