﻿/* Ensure the login page is full screen */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

/* Adjust the form layout */
.login-form-box {
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.section-header h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Button Style */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

/* Styling the image on the left side */
.left-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile responsiveness: Stack columns on small screens */
@media (max-width: 768px) {
    .login-page {
        padding: 15px;
    }

    .col-lg-6, .col-md-8 {
        width: 100%;
        margin-bottom: 20px;
    }

    .login-form-box {
        padding: 20px;
    }
}

.text-center a {
    color: #007bff;
    text-decoration: none;
}

    .text-center a:hover {
        text-decoration: underline;
    }
