/* Reset dasar */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container utama */
.container {
    display: flex;
    width: 900px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Bagian ilustrasi */
.logo-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C9E9D2;
}

.logo-section img {
    width: 150%;
}

/* Bagian form */
.form-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Input Form */
.input-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

input, button {
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
}

input {
    width: 93.3%;
}

/* Tombol */
button {
    width: 100%;
    background: #5D8736;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

button:hover {
    background: #4d742b; /* Efek hover */
}

/* Teks Sign In */
.signin-text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.signin-text a {
    color: #C7DB9C;
    text-decoration: none;
}

.signin-text a:hover {
    text-decoration: underline;
}

/* Responsif */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .logo-section {
        width: 100%;
        padding: 20px;
    }

    .form-section {
        width: 100%;
        padding: 30px;
    }
}
