/* Font Face Declarations */
@font-face {
    font-family: 'RFDewiCondensed';
    src: url('../fonts/RFDewiCondensed-Regular.woff2') format('woff2'),
         url('../fonts/RFDewiCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RFDewiCondensed';
    src: url('../fonts/RFDewiCondensed-Bold.woff2') format('woff2'),
         url('../fonts/RFDewiCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'RFDewiCondensed', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f5f5f7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'RFDewiCondensed', sans-serif;
    font-weight: bold;
    color: #000000;
}

input, button, textarea, select {
    font-family: 'RFDewiCondensed', sans-serif;
    color: #000000;
}

/* Common Components */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #FF0000;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
    color: #000000;
}

.error-message {
    color: #FF0000;
    margin-bottom: 20px;
}

.success-message {
    color: #000000;
    margin-bottom: 20px;
}

/* Button Styles */
.select-plan-btn,
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    text-decoration: none;
}

.select-plan-btn:hover,
.submit-btn:hover {
    background: #FF0000;
    transform: translateY(-1px);
}

.select-plan-btn:active,
.submit-btn:active {
    transform: translateY(0);
}

.select-plan-btn[disabled] {
    background: #666666;
    cursor: not-allowed;
    transform: none;
}

.submit-btn {
    background: #000000;
}

.submit-btn:hover {
    background: #FF0000;
} 