/* Reset & Fonts - Salin dasar-dasar dari stylecss.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar - Gaya minimalist yang sama seperti di halaman utama */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 240px;
    max-width: 32vw;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #888888;
}

/* Modifikasi Hero Section untuk Login */
.hero-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    min-height: 80vh;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.82) 100%),
        url('assets/login bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 50%;
}

.hero-tag {
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    line-height: 0.95;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: #ffb700; /* Warna aksen emas premium */
}

.hero-desc {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;
    max-width: 80%;
}

/* Login Card - Menggunakan gaya gelap hero-stats dari halaman utama */
.login-card {
    background-color: #050505;
    border: 1px solid #151515;
    padding: 40px;
    width: 400px;
}

.stats-title {
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Login Form UI */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    background-color: transparent;
    border: 1px solid #333333; /* Border tipis abu-abu */
    color: #ffffff;
    padding: 15px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #ffb700; /* Border emas saat fokus */
}

.action-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.forgot-pass {
    color: #888888;
    text-decoration: none;
    font-size: 0.8rem;
}

.forgot-pass:hover {
    color: #ffb700;
}

.btn-signin {
    background-color: #ffb700; /* Emas premium */
    color: #000000; /* Teks hitam kontras */
    border: none;
    padding: 15px 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-signin:hover {
    background-color: #e6a500;
}
/* Contact Us Improved Design */
.contact-section {
    padding: 80px 5%;
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.section-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-form-improved {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-improved input,
.contact-form-improved textarea {
    background-color: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 15px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form-improved textarea {
    grid-column: 1 / -1; /* Membentang penuh */
}

.contact-form-improved input[readonly] {
    background-color: rgba(255, 255, 255, 0.06);
    color: #bdbdbd;
    cursor: not-allowed;
}

.contact-form-improved input[readonly]:focus {
    border-color: #333333;
}

.contact-form-improved input:focus,
.contact-form-improved textarea:focus {
    border-color: #ffb700;
}

.contact-form-improved .btn-submit {
    grid-column: 1 / -1;
    background-color: transparent;
    color: #ffb700;
    border: 1px solid #ffb700;
    padding: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form-improved .btn-submit:hover {
    background-color: #ffb700;
    color: #000000;
}