/* Subscription Box */
.subscription-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

/* Subscription Header */
.subscription-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.subscription-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.subscription-title p {
    font-size: 14px;
    color: #666666;
}

.subscription-price .price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
}

.subscription-price .price-note {
    font-size: 12px;
    color: #666666;
}

/* Subscription Features */
.subscription-features {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.subscription-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #10b981; /* Green color for checkmark */
}

/* Payment Button */
.subscription-payment .payment-button {
    width: 100%;
    background: #0073e6;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.subscription-payment .payment-button:hover {
    background: #005bb5;
}

.loading-spinner {
    display: none;
    margin-left: 8px;
}

.spinner-icon {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Security Info */
.subscription-security {
    margin-top: 16px;
    text-align: center;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666666;
}

.security-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #666666;
}
/* Important Info Section */
.important-info {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-top: 24px;
    border: 1px solid #e0e0e0;
   	max-width:500px;
	margin:auto;
}

/* Info Title */
.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

/* Info List */
.info-list {
    list-style-type: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

/* Info Item */
.info-item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    line-height: 1.6;
}
.error-message {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 16px;
    margin: 16px auto;
    max-width: 600px;
    text-align: center;
    color: #c62828;
}
.auth-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
    justify-content: center; /* Center the buttons */
    margin-top: 20px; /* Space above the buttons */
}

.auth-button {
    background-color: #0073e6; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Button text size */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.auth-button:hover {
    background-color: #005bb5; /* Darker background on hover */
}

.iban-info {
    font-size: 14px;
    color: #333;
    background: #f9fafb;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}