/* Email Registration Module - Registration Styles */

.register-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    padding: 40px 20px;
}

.register-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.register-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.875rem;
    color: #6b7280;
}

.alert-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-warning {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.alert-info {
    background-color: #dbeafe;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-label i {
    margin-right: 8px;
    color: #9ca3af;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-errors {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    margin-right: 8px;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 12px 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: #1f2937;
    color: white;
    border: 1px solid #374151;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 24px;
}

.btn-google:hover {
    background: #111827;
    color: white;
}

.btn-google svg {
    margin-right: 12px;
}

.separator {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.separator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #d1d5db;
}

.separator span {
    position: relative;
    background: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 0.875rem;
}

.login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: #374151;
}

.login-link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .register-card {
        padding: 30px 20px;
    }
    
    .logo-title {
        font-size: 2rem;
    }
}

