body {
    background-color: #121212;
}

.membership-form-container {
    max-width: 800px;
    margin: 50px auto;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.login-form {
    max-width: 500px;
}
.membership-product-header {
    background: #252525;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    margin-bottom: 30px;
}

.plan-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.price-label {
    font-size: 24px;
    margin: 0;
}

.price-label span {
    color: #d4af37;
    font-weight: bold;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.form-group input {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: #d4af37;
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: #d4af37;
    text-decoration: none;
}

.subscribe-button {
    width: 100%;
	  background: linear-gradient(
        135deg,
        #A67C00 0%,
        #E5C97A 25%,
        #FFF2B0 50%,
        #D4AF37 75%,
        #C6A75E 100%
    ) !important;
    border: none;
    color: #1e1e1e !important;
    padding: 15px;
    border: none !important;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.subscribe-button:hover {
    /* background: #b8962e !important; */
    transform: translateY(-2px);
}

.login-link, .registration-link {
    text-align: center;
    margin-top: 20px;
    color: #888;
}

.login-link a, .registration-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-utils {
    margin-bottom: 20px;
    text-align: right;
}

.forgot-password {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.form-description {
    text-align: center;
    color: #888;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

#registration-message, #login-message, #forgot-message, #reset-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.success-msg {
    background: rgba(0, 255, 0, 0.1);
    color: #4caf50;
    display: block !important;
}

.error-msg {
    background: rgba(255, 0, 0, 0.1);
    color: #f44336;
    display: block !important;
}
