/* stockmetrics.de Registration Form Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container Layout */
.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
    display: flex;
    min-height: 100vh;
}

/* Form Section (Left 50%) */
.form-section {
    flex: 1;
    max-width: 50%;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Step Styles */
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.step h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.step h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.step h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.back-btn:hover {
    background-color: #f0f0f0;
}

.step-header h4 {
    margin: 0;
    text-align: left;
}

/* Input Fields */
.input-field {
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: #fff;
}

.input-field input:focus {
    outline: none;
    border-color: #6366f1;
}

.input-field input::placeholder {
    color: #999;
    font-size: 16px;
}

.input-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

/* Select Fields */
.input-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: #fff;
}

.input-field select:focus {
    outline: none;
    border-color: #6366f1;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin: 20px 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    color: #6366f1;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #6366f1;
}

.btn-apply {
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-apply:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.full-width {
    width: 100%;
}

/* Legal Text */
.legal-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 20px 0;
    line-height: 1.5;
}

.legal-text a {
    color: #6366f1;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.login-link a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Pricing Content */
.pricing-content h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.price {
    text-align: center;
    margin: 30px 0;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.amount {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 8px;
}

.period {
    font-size: 24px;
    color: #333;
    font-weight: 500;
}

.more-info {
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    margin: 20px 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.more-info:hover {
    text-decoration: underline;
}

.features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.features li i {
    margin-right: 12px;
    font-size: 18px;
    color: #10b981;
}

.consultation {
    text-align: center;
    margin-top: 30px;
}

.consultation p {
    color: #666;
    margin-bottom: 15px;
}

/* Payment Methods */
.payment-methods {
    margin: 30px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method.active {
    border-color: #6366f1;
    background: #f8f9ff;
}

.payment-method input[type="radio"] {
    margin-right: 12px;
    width: auto;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    color: #333;
}

.payment-method i {
    font-size: 20px;
    color: #6366f1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e1e5e9;
    transition: background-color 0.2s;
}

.dot.active {
    background: #6366f1;
}

/* Content Section (Right 50%) */
.content-section {
    flex: 1;
    max-width: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.content-step {
    text-align: center;
    max-width: 500px;
}

/* Testimonial */
.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial strong {
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.testimonial-author p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-player {
    margin-bottom: 0;
}

.video-thumbnail {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.video-thumbnail:hover {
    background: rgba(255, 255, 255, 0.15);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.video-logo {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.video-controls {
    display: flex;
    gap: 15px;
}

.video-controls i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.video-content {
    text-align: center;
}

.video-main-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.play-button {
    width: 50px;
    height: 50px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 20px;
    color: white;
}

.video-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.video-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Reviews */
.reviews {
    text-align: center;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #ffd700;
    font-size: 18px;
}

.stars span {
    margin-left: 10px;
    font-weight: 600;
}

.reviews p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.review-avatars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.review-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.order-summary h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
}

/* Summary Table Styles */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    font-size: 16px;
}

.summary-table td {
    padding: 8px 0;
    border: none;
}

.summary-table td.amount {
    text-align: right;
    font-weight: 500;
    padding-left: 180px;
    color: white;
}

.summary-table tr.divider td {
    padding: 10px 0;
}

.summary-table tr.divider hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.summary-table tr.total {
    font-size: 18px;
    font-weight: 600;
}

.summary-table tr.total td {
    padding: 12px 0 0 0;
}

/* Security Info */
.security-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.security-info h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.security-item i {
    font-size: 20px;
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .form-section,
    .content-section {
        max-width: 100%;
    }
    
    .content-section {
        order: -1;
        min-height: 300px;
    }
    
    .step {
        padding: 20px 0;
    }
    
    .form-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .step h4 {
        font-size: 24px;
    }
    
    .amount {
        font-size:12px;
    }
    
    .pricing-content h5 {
        font-size: 20px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .testimonial p {
        font-size: 16px;
    }
}

/* Testimonial Section for Step 2 */
.testimonial-section {
    width: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.profile-pictures {
    display: flex;
    align-items: center;
    position: relative;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.pic-1 {
    z-index: 3;
}

.pic-2 {
    margin-left: -10px;
    z-index: 2;
}

.pic-3 {
    margin-left: -10px;
    z-index: 1;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 18px;
}

.star-half {
    color: rgba(255, 215, 0, 0.5) !important;
}

.rating-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
}
