* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: url('https://vajrahost.com/assets/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    background-color: #080705;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    backdrop-filter: blur(15px); 
    background: rgba(12, 10, 6, 0.75);
    z-index: 1;
}

.panel {
    position: relative;
    z-index: 2;
    width: 580px; 
    max-width: 95%;
    background: rgba(20, 18, 15, 0.85);
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(14px);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 179, 0, 0.1);
    animation: fadeUp .4s ease;
}

.panel h2 {
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 800;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.row.single {
    grid-template-columns: 1fr;
}

input, select {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    font-size: 15px;
    background: rgba(30, 27, 20, 0.6);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

input::placeholder, select option {
    color: #9ca3af;
    background: #1c1813;
}

input:disabled, select:disabled {
    background: rgba(20, 20, 20, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    color: #6b7280;
}

input:focus, select:focus {
    border-color: #ffb300;
    background: rgba(40, 35, 25, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.15);
}

.section-text {
    text-align: center;
    font-weight: 600;
    margin: 18px 0 12px;
    font-size: 16px;
    color: #ffb300;
}

.terms {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-top: 16px;
    align-items: center;
    color: #d1d5db;
}

.terms input {
    width: auto;
    accent-color: #ffb300;
    cursor: pointer;
}

.login-text {
    text-align: center;
    font-size: 14px;
    margin: 14px 0 20px;
    color: #9ca3af;
}

.login-text a {
    color: #ffb300;
    text-decoration: none;
    font-weight: 700;
}

.login-text a:hover {
    color: #ffe082;
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.3) 0%, rgba(245, 124, 0, 0.3) 100%);
    color: #9ca3af;
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    font-size: 16px;
    opacity: .7;
    cursor: not-allowed;
    font-weight: 600;
    transition: all 0.3s ease;
}

button.enabled {
    opacity: 1;
    cursor: pointer;
    background: linear-gradient(135deg, #ffb300 0%, #f57c00 100%);
    color: #1a120b;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    border: none;
}

button.enabled:hover {
    background: linear-gradient(135deg, #ffa000 0%, #ef6c00 100%);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
    transform: translateY(-1px);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-box {
    background: #1c1813;
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 28px;
    border-radius: 20px;
    width: 340px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: pop .25s ease;
}

.modal-box h3 {
    color: #fff;
    font-size: 20px;
}

.modal-box.success h3 { color: #4ade80; }
.modal-box.error h3 { color: #f87171; }

.modal-box p {
    margin: 12px 0 18px 0;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

.modal-box button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffb300 0%, #f57c00 100%);
    color: #1a120b;
    cursor: pointer;
    opacity: 1;
    width: auto;
    font-weight: 700;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pop {
    from { transform: scale(.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 640px) {
    body { padding: 16px; }
    .panel { width: 100%; padding: 22px; }
    .row { grid-template-columns: 1fr; }
}