﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
}

/* Top Navigation Bar */
.middle-bar {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    background: #e0e3e7;
    border: 1px solid #c4c9d0;
    padding: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    border-radius: 0 0 12px 12px;
}

.middle-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

/* Layout Container */
.container {
    display: flex;
    background-color: #fff;
    padding-top: 100px; /* Space for top nav */
}

/* Left Side Panel */
.left-panel {
    flex: 1;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .left-panel h1 {
        font-size: 32px;
        color: #ee4d2d;
        margin-bottom: 20px;
    }

    .left-panel p {
        font-size: 16px;
        color: #555;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .left-panel img {
        max-width: 400px;
        width: 100%;
    }

/* Right Form Panel */
.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-panel {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 50px 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    text-align: center;
}

    .login-panel h2 {
        margin-bottom: 30px;
        font-size: 24px;
        color: #333;
    }

/* Input Box */
.input-box {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* Button */
.login-button {
    width: 100%;
    background-color: #ee4d2d;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .login-button:hover {
        background-color: #f26d4f;
    }

/* Extra Link */
.extra-links {
    margin-top: 20px;
    font-size: 14px;
}

    .extra-links a {
        color: #007bff;
        text-decoration: none;
    }

/* Error Message */
.message-label {
    margin-top: 10px;
    display: block;
    font-size: 14px;
}
