﻿
.login-wrapper {
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    min-height: 100vh; /* Take full height of viewport */
    background: #f0f0f0;
}

.login-container {
    display: flex;
    flex-direction: row; /* Left and right side by side */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 30px;
    max-width: 800px;
    width: 100%;
}

.login-left {
    background-color: #1d3665;
    color: white;
    width: 40%;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-left .logo {
        /*width: 120px;*/
        margin-bottom: 25px;
        display: block;
        margin: 0 auto 20px auto; /* top 0, bottom 20px for spacing */
        max-width: 100%;
        height: auto;
    }

    .login-left h2 {
        font-size: 1rem;
        line-height: 1.8;
    }

.login-right {
    width: 60%;
    background-color: #1b4d3e; /* Dark Green */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-right h3 {
        margin-bottom: 30px;
    }

    .login-right .form-control {
        background-color: #f7f7f7;
        border: 1px solid #ccc;
        font-size: 1rem;
        padding: 12px;
    }

.btn-login {
    background-color: #145c33;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
}

    .btn-login:hover {
        background-color: #104d2a;
    }

.form-links a {
    color: #ddd;
    font-size: 0.9rem;
    text-decoration: none;
}

    .form-links a:hover {
        text-decoration: underline;
    }
.form-header {
    background-color: #0f204b; /* Dark Blue */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .form-header a.btn:hover {
        background-color: #0056b3;
        color: white !important;
        text-decoration: none;
    }

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.back-btn {
    background-color: #FF5722 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 5px;
    border: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}


