@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container-login {
    display: flex;
    width: 800px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.image-section-login {
    width: 50%;
    background: url('/images/bg_1.jpg') no-repeat center center;
    background-size: cover;
}

.form-section-login {
    width: 50%;
    padding: 40px;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group-login {
    margin-bottom: 15px;
}

.input-group-login label {
    display: block;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
}

.input-group-login input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.custom-btn {
    background-color: #10d19c;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-btn:hover {
    background-color: #0bb386;
}

.options-login {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
}

.options-login a {
    text-decoration: none;
    color: #b88a3f;
}

.remember-me-login {
    display: flex;
    align-items: center;
}

.remember-me-login input {
    margin-right: 5px;
}

.logo-login {
    text-align: center;
    margin-bottom: 20px;
}

.logo-login img {
    max-width: 250px; /* Adjust size */
    height: auto;
}
