/* Registration Page Styles */
.registration-container {
    padding: 60px 0;
    background-color: var(--dark-color);
}

.registration-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.registration-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f8d7da;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #d4edda;
    padding: 20px;
    text-align: center;
}

.success-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.trial-banner {
    display: flex;
    align-items: center;
    background-color: rgba(110, 68, 255, 0.1);
    border: 1px solid rgba(110, 68, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.trial-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.trial-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.trial-info p {
    margin: 0;
    opacity: 0.9;
}

.registration-form {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background-color: #3a3a5a;
    border: 1px solid #4a4a6a;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(110, 68, 255, 0.25);
}

.field-hint {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
    color: #aaa;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    font-weight: normal;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-actions {
    margin-top: 30px;
}

.btn-large {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Account Type Options */
.account-type-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.account-type-option {
    flex: 1;
    width: 50%;
    min-width: 0; /* Prevent flex items from growing beyond their container */
}

.account-type-option input[type="radio"] {
    display: none;
}

.account-type-option label {
    display: flex;
    padding: 15px;
    border: 1px solid #4a4a6a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100px; /* Fixed height for both boxes */
    width: 100%; /* Ensure the label takes full width of its container */
    box-sizing: border-box; /* Include padding and border in the element's width and height */
}

.account-type-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(110, 68, 255, 0.1);
}

.account-type-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.account-type-details {
    flex: 1; /* Allow details to take up remaining space */
    min-width: 0; /* Prevent overflow */
    overflow: hidden; /* Prevent text overflow */
}

.account-type-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.account-type-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* Pricing Tiers Styling */
.pricing-tiers {
    margin-top: 30px;
}

.pricing-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.pricing-option {
    flex: 1;
    position: relative;
}

.pricing-option input[type="radio"] {
    display: none;
}

.pricing-option label {
    display: block;
    padding: 25px;
    border: 1px solid #4a4a6a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(110, 68, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.pricing-cost {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.pricing-cost .price {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-cost .period {
    font-size: 0.9rem;
    color: #aaa;
    margin-left: 5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: #aaa;
}

.pricing-trial {
    margin-top: 20px;
    text-align: center;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 8px;
    border-radius: 4px;
}

.pricing-trial span {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 500;
}

/* Terms checkbox styling */
.terms-group {
    margin-top: 30px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .registration-wrapper {
        padding: 30px 20px;
    }
    
    .account-type-options,
    .pricing-options {
        flex-direction: column;
    }
    
    .account-type-option,
    .pricing-option {
        width: 100%;
    }
    
    .pricing-option + .pricing-option {
        margin-top: 20px;
    }
} 