:root {
    --primary-color: #ff760d;
    --primary-hover: #c95700;
    --success-color: #4caf50;
    --error-color: #f44336;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
}

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

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

.input-field, select.input-field, textarea.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.input-field:focus, select.input-field:focus, textarea.input-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.2);
    outline: none;
}

textarea.input-field {
    min-height: 120px;
    resize: vertical;
}

.button {
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.button .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.button.loading .spinner {
    display: block;
}

.button.loading .button-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.button:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

.button-primary { background-color: var(--primary-color); }
.button-primary:hover:not(:disabled) { background-color: var(--primary-hover); transform: translateY(-2px); }
.button-success { background-color: var(--success-color); }

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

.plan-option {
    display: flex;
    align-items: center;
    border: 1px solid var(--contentL);
    padding:10px;
    border-radius:5px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option.selected, .plan-option:hover {
    border-color: var(--primary-color);
    background-color: var(--contentBs);
}

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

.radio-indicator {
    width: 24px; height: 24px; border: 2px solid #bdbdbd; border-radius: 50%;
    margin-right: 15px; display: flex; justify-content: center; align-items: center;
    flex-shrink: 0; transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}
.plan-option.selected .radio-indicator { border-color: var(--primary-color); background-color: var(--primary-color); }
.plan-details { display: flex; justify-content: space-between; width: 100%; align-items: center; }
.plan-name { font-weight: 600; }
.plan-price { font-weight: 500;}

.order-summary { background-color: var(--contentBs); padding: 20px; border-radius: 5px; margin-bottom: 30px;padding-top: 0; border: 1px solid var(--contentL); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; }
.summary-item strong {font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; margin-top: 10px; border-top: 2px solid var(--contentL); }
.summary-total span:first-child { font-size: 1.1rem; font-weight: 600; }
.summary-total span:last-child { font-size: 1.6rem; font-weight: 700; color: var(--primary-color); }
#payment-instructions { background-color: var(--contentBs); padding: 15px; border-radius: 8px; border-left: 4px solid #7986cb; margin: 20px 0; font-size: 0.9rem; display: none; }
#payment-instructions.visible { display: block; }
#payment-instructions strong { display: block; margin-bottom: 5px; }

.thank-you-wrapper { text-align: center; }
.checkmark-circle { width: 80px; height: 80px; border-radius: 50%; background-color: #e8f5e9; margin: 0 auto 25px auto; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--success-color); }
.thank-you-wrapper h1 { font-size: 2.2rem; }
.thank-you-wrapper p {margin-bottom: 30px; }

.generator-wrapper {
    display: none;
}

#plan-fields-container .form-group {
    padding: 15px;
    border: 1px solid var(--contentL);
    border-radius: 8px;
    margin-bottom: 15px;
}

.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.password-box {
    padding: 30px;
    margin: 0 20px;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--contentL);
}

#password-error {
    color: var(--error-color);
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
    display: none;
}
