/* --- Global Styles & Variables (from auth.css) --- */
:root {
    --primary-color: #FF6B6B;
    --dark-bg: #1A1A1A;
    --dark-card-bg: #282828;
    --dark-text: #E0E0E0;
    --grey-border: #444;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background: url('https://images.unsplash.com/photo-1621605815971-fbc3330058da?q=80&w=1974') no-repeat center center/cover;
    background-color: var(--dark-bg);
    background-blend-mode: overlay;
    color: var(--dark-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Auth Container & Box --- */
.auth-container { width: 100%; padding: 20px; }
.auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.95);
    padding: 2.5rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--grey-border);
}

/* --- Headers & Form Elements --- */
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .logo { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary-color); }
.auth-header h1 { font-family: var(--font-heading); font-size: 1.8rem; }
.input-group { position: relative; margin-bottom: 1.2rem; }
.input-group i { position: absolute; left: 15px; top: 18px; color: #888; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #1e1e1e;
    border: 1px solid var(--grey-border);
    border-radius: 5px;
    color: var(--dark-text);
    font-size: 1rem;
    font-family: var(--font-body);
}
.input-group textarea { resize: vertical; padding-top: 1rem; }
.input-group i.fa-map-marker-alt { top: 1rem; }

/* Custom File Upload */
.file-upload-group { margin-bottom: 1.2rem; }
.file-upload-input { display: none; }
.file-upload-label {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #333;
    border: 1px solid var(--grey-border);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}
.file-upload-label:hover { background-color: #444; }
.file-upload-label i { margin-right: 0.5rem; }
.file-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
}

/* Buttons and Toggles */
.btn { width: 100%; padding: 1rem; border: none; border-radius: 8px; font-size: 1.1rem; cursor: pointer; }
.btn-primary { background: var(--primary-color); color: #fff; }
.toggle-auth { text-align: center; margin-top: 1.5rem; color: #bbb; }
.hidden { display: none; }

/* Pending Verification Message */
.pending-message { text-align: center; padding: 2rem 0; }
.pending-message i { font-size: 4rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.pending-message h2 { font-family: var(--font-heading); font-size: 2rem; }
.pending-message p { color: #bbb; margin: 1rem 0 2rem; }


.radio-group .group-label {
    display: flex; /* Aligns icon and text */
    align-items: center; /* Vertically centers them */
    margin-bottom: 0.8rem;
    color: #bbb;
    font-weight: 500;
}
.radio-group .group-label i {
    margin-right: 0.7rem; 
    color: var(--primary-color);
}

.radio-options {
    display: flex;
    justify-content: space-around; /* Changed for better spacing */
    gap: 1rem;
    background: #1e1e1e;
    padding: 1rem;
    border: 1px solid var(--grey-border);
    border-radius: 5px;
}

.radio-option {
    display: flex;
    align-items: center; /* Vertically centers the radio button and its label */
}

.radio-option input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

.radio-option label {
    color: var(--dark-text);
    cursor: pointer;
}

#success-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#success-modal.hidden {
  display: none;
}

#success-modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
