﻿body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    height: 45px;
    border-radius: 15px;
    padding-left: 45px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.login-card {
    border-radius: 18px;
    overflow: hidden;
}

.login-left {
    background: #f8f9fc;
    padding: 3rem;
}

.login-right {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-right img {
        max-height: 320px;
        width: auto;
    }

.btn-login {
    border-radius: 30px;
    font-weight: 600;
    height: 45px;
}

.brand-title {
    font-weight: 800;
    color: #2a5298;
}

@media (max-width: 767px) {
    .login-right {
        display: none;
    }
}
