/* ============================================
   REGISTER SEITE - ELEGANT & MODERN
   ============================================ */

.register-page {
    background: #f8fafc;
}

.register-container {
    padding: 4rem 0;
}

/* ============================================
   REGISTER FORM CARD
   ============================================ */

.register-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

.register-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.register-form-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.3);
}

.register-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.register-form-subtitle {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

/* ============================================
   REGISTER FORM
   ============================================ */

.register-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Section */
.register-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 150, 255, 0.1);
}

.register-section-title i {
    font-size: 1.25rem;
    color: #0096ff;
}

.register-optional {
    font-size: 0.875rem;
    font-weight: 400;
    color: #94a3b8;
    margin-left: auto;
}

/* Fields */
.register-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.register-field-row {
    display: flex;
    gap: 1rem;
}

.register-field--75 {
    flex: 0 0 calc(75% - 0.5rem);
}

.register-field--25 {
    flex: 0 0 calc(25% - 0.5rem);
}

.register-field--67 {
    flex: 0 0 calc(66.666% - 0.5rem);
}

.register-field--33 {
    flex: 0 0 calc(33.333% - 0.5rem);
}

.register-field--50 {
    flex: 0 0 calc(50% - 0.5rem);
}

/* Labels */
.register-label {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a202c;
}

.register-label--small {
    font-size: 0.813rem;
    color: #718096;
}

/* Inputs */
.register-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.938rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #f8fafc;
    color: #1a202c;
    transition: all 0.2s ease;
}

.register-input:focus {
    outline: none;
    border-color: #0096ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
}

.register-input::placeholder {
    color: #cbd5e0;
}

.register-input--error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
}

.register-input--error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Password Field */
.register-password-wrapper {
    position: relative;
}

.register-input--password {
    padding-right: 3rem;
}

.register-password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.register-password-toggle:hover {
    color: #0096ff;
}

.register-password-toggle:focus {
    outline: none;
    color: #0096ff;
}

.register-password-toggle i {
    font-size: 1rem;
}

/* Error Messages */
.register-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #ef4444;
    font-weight: 500;
}

.register-error i {
    font-size: 1rem;
}

/* ============================================
   AGREEMENTS (CHECKBOXES)
   ============================================ */

.register-agreements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.register-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.register-checkbox--error {
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.03);
    border-radius: 8px;
}

.register-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.register-checkbox-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.register-checkbox-checkmark::after {
    content: "✓";
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.register-checkbox input:checked ~ .register-checkbox-checkmark {
    background: #0096ff;
    border-color: #0096ff;
}

.register-checkbox input:checked ~ .register-checkbox-checkmark::after {
    opacity: 1;
}

.register-checkbox:hover .register-checkbox-checkmark {
    border-color: #0096ff;
}

.register-checkbox-label {
    font-size: 0.938rem;
    color: #4a5568;
    line-height: 1.6;
}

.register-checkbox-label a {
    color: #0096ff;
    text-decoration: none;
    font-weight: 600;
}

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

/* ============================================
   RECAPTCHA / COOKIE NOTICE
   ============================================ */

.register-captcha {
    display: flex;
    justify-content: center;
}

.register-cookie-notice {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.register-cookie-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.register-cookie-content {
    flex: 1;
    font-size: 0.938rem;
    color: #78350f;
    line-height: 1.6;
}

.register-cookie-content strong {
    color: #92400e;
}

.register-cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #f59e0b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.75rem;
}

.register-cookie-btn:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.register-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.3);
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.4);
}

.register-submit-btn:active {
    transform: translateY(0);
}

.register-submit-btn i {
    font-size: 1.25rem;
}

/* ============================================
   LOGIN PROMPT
   ============================================ */

.register-login-prompt {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.register-login-text {
    font-size: 0.938rem;
    color: #718096;
    margin-right: 0.5rem;
}

.register-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    color: #0096ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.register-login-link:hover {
    gap: 0.75rem;
    color: #0077cc;
}

.register-login-link i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.register-login-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   INFO CARD
   ============================================ */

.register-info-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
}

.register-info-header {
    margin-bottom: 2rem;
}

.register-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.register-info-subtitle {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

/* ============================================
   FEATURES
   ============================================ */

.register-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    flex: 1;
}

.register-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.register-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.register-feature-icon--blue {
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
}

.register-feature-icon--green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.register-feature-icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.register-feature-content {
    flex: 1;
}

.register-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.register-feature-text {
    font-size: 0.938rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   INFO TIP
   ============================================ */

.register-info-tip {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
}

.register-info-tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.register-info-tip-content {
    font-size: 0.938rem;
    color: #78350f;
    line-height: 1.6;
}

.register-info-tip-content strong {
    color: #92400e;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .register-form-card,
    .register-info-card {
        padding: 2rem;
    }

    .register-info-card {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .register-container {
        padding: 3rem 0;
    }

    .register-form-card,
    .register-info-card {
        padding: 2rem;
    }

    .register-form-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .register-form-title {
        font-size: 1.75rem;
    }

    .register-section-title {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .register-container {
        padding: 2rem 0;
    }

    .register-form-card,
    .register-info-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .register-form-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .register-form-title {
        font-size: 1.5rem;
    }

    .register-form-subtitle {
        font-size: 0.938rem;
    }

    .register-field-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .register-field--75,
    .register-field--25,
    .register-field--67,
    .register-field--33,
    .register-field--50 {
        flex: 1 1 100%;
    }

    .register-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .register-input--password {
        padding-right: 2.75rem;
    }

    .register-password-toggle {
        width: 2.75rem;
    }

    .register-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .register-agreements {
        padding: 1.25rem;
    }

    .register-cookie-notice {
        flex-direction: column;
        text-align: center;
    }

    .register-cookie-icon {
        margin: 0 auto;
    }

    .register-feature {
        gap: 1rem;
    }

    .register-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .register-feature-title {
        font-size: 1rem;
    }

    .register-info-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .register-form-card,
    .register-info-card {
        padding: 1.25rem;
    }

    .register-form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .register-form-title {
        font-size: 1.25rem;
    }

    .register-section-title {
        font-size: 0.938rem;
    }

    .register-section-title i {
        font-size: 1rem;
    }

    .register-input {
        padding: 0.625rem 0.75rem;
        font-size: 0.813rem;
    }

    .register-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.938rem;
    }

    .register-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .register-info-tip {
        padding: 1rem;
    }

    .register-info-tip-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .register-cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-form-card {
    animation: fadeInUp 0.4s ease;
}

.register-info-card {
    animation: fadeInUp 0.5s ease;
}