﻿* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: none;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.image-section {
    width: 100%;
    height: 100%;
    max-width: 546px;
    max-height: 461px;
    object-fit: fill;
}

.login-form {
    background: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    color: #183a6d;
}

.form-title {
    color: #183a6d;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-control {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #183a6d;
        box-shadow: 0 0 0 0.25rem rgba(24, 58, 109, 0.2);
    }

.btn-login {
    background: #183a6d;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
}

    .btn-login:hover {
        background: #183a6d;
        color: white;
    }

.version {
    color: #6c757d;
    font-size: 12px;
    margin-top: 30px;
    text-align: center;
}

.powered-by {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

    .feature-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        margin-right: 10px;
        background: rgba(255, 255, 255, 0.2);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@media (max-width: 992px) {

    .login-container {
        height: auto;
    }
}
