/* General body styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f9;
    box-sizing: border-box;
}

/* Full container for the login page */
.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left panel (blue section) */
.left-panel {
    background-image: url('assets/uploads/login/bimage.png');
    background-size: cover;
}

/* Login form container (right panel with image background) */
.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #002a5c;
}

/* Form column for logo above form */
.form-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Logo styles */
.logo {
    display: none;
}

/* Login form styles */
.login-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    text-align: center;
}

.login-form h2 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.login-form button:hover {
    background: #e65c00;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        display: none;
    }

    .logo {
        display: block;
        max-width: 250px;
        height: auto;
        position: relative;
        bottom: 0px;
        right: 20px;
    }
}