/* GLOBAL RESET DAN BODY */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Font sesuai gambar */
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Mencegah scroll karena background full screen */
}

/* CONTAINER UTAMA DAN BACKGROUND IMAGE */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-image: url('https://img.freepik.com/premium-photo/computer-fashion-design-with-creative-woman-work-her-office-modern-artistic-style-smile-workshop-technology-with-happy-young-designer-working-studio-creativity_590464-218284.jpg?semt=ais_hybrid&w=740&q=80');
     */background-image: url('https://www.shutterstock.com/image-photo/beautiful-asian-female-operator-working-600nw-2559437041.jpg');
    background-size:cover;
    background-position: center;
    z-index: 1; /* Di bawah lapisan login */
}

.login-container {
    position: relative;
    z-index: 10;
    /* Efek pencerahan pada area di luar kotak login */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start; /* Tarik kotak ke kiri */
    align-items: center;
}

/* KOTAK LOGIN TRANSPARAN */
.login-box {
    background-color: rgba(255, 255, 255, 0.8); /* Warna putih transparan */
    padding: 40px;
    margin-left: 10%; /* Posisi di kiri, bisa disesuaikan */
    border-radius: 8px; /* Sudut membulat minimal */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
    width: 400px; /* Lebar tetap kotak login */
}

/* HEADER DAN LOGO */
.header-text {
    position: absolute; /* Posisi di luar kotak login transparan */
    top: 10%; /* Sesuaikan posisi vertikal */
    left: 3%; /* Sesuaikan posisi horizontal */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    font-size: 28px;
    font-weight: bold;
    color: #000; /* Warna hitam (atau sesuaikan) */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* Sedikit bayangan untuk visibilitas */
    z-index: 11;
}
.design-text {
    font-size: 0.9rem;
    color: #6c757d; /* Warna abu-abu */
    margin-top: -70px; /* Angkat sedikit agar dekat dengan judul */
    margin-bottom: 30px;
}
.logo-360 {
    font-size: 3.5em; /* Lebih besar */
    line-height: 0.8;
}

.logo-text {
    font-size: 1em;
    font-weight: normal;
}

/* KOTAK LOGIN: Judul Go-Relations dan Form */
.go-relations {
    font-size: 24px;
    font-weight: bold;
    margin: 110px 0 30px 0; /* Jarak agar tidak bertabrakan dengan logo di atas */
    color: #000;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white; /* Pastikan input tidak ikut transparan */
}

/* BUTTONS */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    flex-basis: 48%;
}

.btn.submit {
    background-color: #1a4a8d; /* Biru tua */
    color: white;
}

.btn.clear {
    background-color: #8c8c8c; /* Abu-abu tua */
    color: white;
}

/* DAFTAR BARU LINK */
.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.register-link a {
    color: #1a4a8d; /* Warna biru */
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Responsiveness (Opsional) */
@media (max-width: 768px) {
    .login-box {
        margin: 20px;
        width: 90%;
        max-width: 400px;
    }
    .login-container {
        justify-content: center;
    }
    .header-text {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 20px;
    }
}