/* Registration Form Styles */

/* Main Container */
.registration-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.registration-header {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.registration-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.registration-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Container */
.registration-form-container {
    padding: 3rem 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #c2185b;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    color: #c2185b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3::before {
    content: '📝';
    font-size: 1.2rem;
}

/* Form Rows and Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c2185b;
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Package Selection */
.package-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.package-title {
    text-align: center;
    color: #c2185b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.package-instruction {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}


.subscription-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.subscription-package {
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.subscription-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #c2185b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.subscription-package:hover {
    border-color: #c2185b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.2);
}

.subscription-package.selected {
    border-color: #c2185b;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.3);
}

.subscription-package.selected::before {
    transform: scaleX(1);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h5 {
    color: #c2185b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.billing-type {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-description {
    text-align: center;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}


.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-select-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #c2185b;
    border: 2px solid #c2185b;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.package-select-btn:hover {
    background: #c2185b;
    color: white;
    transform: translateY(-2px);
}

.mehr-erfahren-btn {
    padding: 0.75rem 1.5rem;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.mehr-erfahren-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* Legal Section */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #c2185b;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    margin: 0;
    cursor: pointer;
}

/* Submit Button */
.text-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 24, 91, 0.4);
}

.cta-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-subtext {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Error Messages */
.error-messages {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.error-messages h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.error-messages ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-messages li {
    margin-bottom: 0.5rem;
    color: #dc2626;
    font-weight: 500;
}

/* Field States */
.field-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* Info Boxes */
.field-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.field-info p {
    margin: 0;
    color: #1e40af;
    line-height: 1.5;
}

.social-info {
    background: #fffbeb;
    border: 1px solid #fed7aa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.social-info p {
    margin: 0.5rem 0;
    color: #9a3412;
    line-height: 1.6;
}

.social-info p:first-child {
    margin-top: 0;
    font-weight: 600;
}

.social-info p:last-child {
    margin-bottom: 0;
}

.password-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: #0369a1;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-page {
        padding: 1rem 0;
    }

    .registration-header {
        padding: 2rem 1.5rem;
    }

    .registration-header h1 {
        font-size: 2rem;
    }

    .registration-header p {
        font-size: 1rem;
    }

    .registration-form-container {
        padding: 2rem 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .subscription-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subscription-package {
        padding: 1.5rem;
    }

    .package-price {
        font-size: 1.8rem;
    }

    .checkbox-group {
        flex-direction: column;
        text-align: left;
    }

    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .registration-header {
        padding: 1.5rem 1rem;
    }

    .registration-header h1 {
        font-size: 1.8rem;
    }

    .form-section {
        padding: 1rem;
    }

    .form-section h3 {
        font-size: 1.3rem;
    }

    .package-header h5 {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1.1rem;
    }
}