* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #102c10ca;
}

.login-container {
    display: flex;
    width: 1085px;
    height: 610px; /* TINGGI DIPERKEIL (DARI 700px ke 520px) */
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.login-side-image {
    flex: 1;
    background: url("../img/login.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.login-side-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(160, 49, 49, 0.331),
        rgba(28, 116, 73, 0.792)
    );
}

.overlay-text {
    text-align: center;
    padding: 20px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-text h1 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
}

.overlay-text p {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.login-side-form {
    flex: 0.8;
    padding: 30px 40px; /* Padding dikurangi agar lebih rapat */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #f8a7a7, #80e0a8);
    position: relative;
}

.form-wrapper h2 {
    color: #0b3e26;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}

.subtitle {
    color: #4a5c53;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Biar hemat tempat, Nama & Username saya buat sebaris (Opsional) */
.input-row {
    display: flex;
    gap: 10px;
}

.input-group {
    margin-bottom: 12px; /* Jarak antar input dipersempit */
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0b3e26;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 10px 14px; /* Input lebih ramping */
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid #bdced3;
    border-radius: 10px;
    outline: none;
    font-size: 13px;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.btn-login {
    padding: 10px 25px;
    background: linear-gradient(135deg, #0b3e26 0%, #1a4a33 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-login-secondary {
    color: #0b3e26;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}

.signup-text {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    color: #4a5c53;
}
