    .auth-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .auth-card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width: 100%;
        max-width: 500px;
    }
    .auth-header {
        background: linear-gradient(135deg, #3a7bd5, #00d2ff);
        color: white;
        padding: 1.5rem;
        text-align: center;
    }
    .auth-body {

        padding: 2rem;
        background-color: white;
    }
    .form-control:focus {
        border-color: #3a7bd5;
        box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.25);
    }
    .btn-primary {
        background-color: #3a7bd5;
        border-color: #3a7bd5;
    }
    .btn-primary:hover {
        background-color: #2c5fb3;
        border-color: #2c5fb3;
    }
    .btn-success {
        background-color: #28a745;
        border-color: #28a745;
    }
    .toggle-link {
        color: #3a7bd5;
        text-decoration: none;
        font-weight: 500;
    }
    .toggle-link:hover {
        text-decoration: underline;
    }
    
    /* Modal Terms Styles */
    .terms-modal {
        display: none;
        position: fixed;
        z-index: 1050;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }
    .terms-modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }
    .terms-modal-header {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
        margin-bottom: 15px;
    }
    .terms-modal-body {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    .terms-modal-footer {
        padding: 10px 0;
        border-top: 1px solid #ddd;
        text-align: right;
    }
    .terms-checkbox {
        margin-right: 10px;
    }
    .terms-content {
        max-height: 60vh;
        overflow-y: auto;
        padding: 10px;
        border: 1px solid #eee;
        border-radius: 5px;
        margin-bottom: 15px;
    }
	<style>
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --text-color: #34495e;
    --light-gray: #ecf0f1;
    --border-radius: 8px;
}

.terms-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.terms-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Section Styling */
.terms-content section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.terms-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

/* Definition List */
.definition-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.definition-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.definition-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.method i {
    color: var(--primary-color);
}

/* Topup Calculator */
.topup-calculator {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fee-details {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.fee-details p {
    margin: 0.5rem 0;
    font-weight: bold;
}

/* Fee Table */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.fee-table th, .fee-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px
	
}
.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* CSS untuk navigasi internal */
.terms-navigation {
    position: sticky;
    top: 20px;
    width: 200px;
    margin-right: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-navigation ul {
    list-style: none;
    padding: 0;
}

.terms-navigation a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.terms-navigation a:hover {
    background: #e9ecef;
}


