body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    height: 100vh;
}

.login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-panel {
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.logo-img {
    /*max-width: 320px;*/
    max-width: 80%;
    width: 100%;
}

.footer-date-time {
    position: absolute;
    bottom: 1rem;
    display: flex;
    gap: 10px;
}

.badge-date, .badge-time {
    background-color: #C3245A;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
}

.right-panel {
    background-color: #C3245A;
    flex: 1;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-form label {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.login-form input {
    border-radius: 6px;
}

.btn-login {
    background-color: #FFC107;
    color: #222;
    font-weight: bold;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    width: 100%;
}

.btn-login:hover {
    background-color: #e0a800;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.password-container {
    position: relative;
}

.eye-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
}

