﻿/*login style*/
body {
    margin: 0;
    height: 100vh;
    /*font-family: 'Segoe UI', sans-serif;*/
    font-family: "Times New Roman";
}

/* FULL HEIGHT */
.main-container {
    height: 100vh;
}

/* LEFT PANEL */
.left-panel {
    position: relative;
    background: url('../assets/images/bg_10.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
}

    .left-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgb(0, 0, 0, 0.24), rgb(0, 0, 0, 0.08));
    }

.left-text {
    position: relative;
    z-index: 2;
}

/* RIGHT PANEL */
.right-panel {
    background: linear-gradient(135deg, #0a1f3c, #123d6b);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 4px;
}

/* LOGIN BOX */
.login-box {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    padding: 15px 35px 15px 35px;
    display: flex;
    flex-direction: column;
    border: 2px solid #000;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* HEADER */
.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-title {
    flex: 1;
    padding-left: 65px;
    font-weight: 600;
}

.form-control:focus {
    border-color: #2f8f9d;
    box-shadow: 0 0 8px rgba(47,143,157,0.45);
}

.form-select:focus {
    border-color: #2f8f9d;
    box-shadow: 0 0 8px rgba(47,143,157,0.45);
}

/* BUTTON */
.btn-login {
    background: linear-gradient(45deg, #19a7a4, #215D6E);
    border: none;
    height: 45px;
    color: #fff;
}

    .btn-login:hover {
        background: linear-gradient(45deg, #123d6b, #215D6E); /* thoda dark */
        color: #fff;
    }
/* FOOTER */
.footer-text {
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
    .left-panel {
        display: none;
    }

    .login-title {
        flex: 1;
        padding-left: 45px;
        font-weight: 600;
    }
}
