﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
}

/* ===== MAIN SPLIT ===== */
.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* ===== LEFT IMAGE SIDE ===== */
.login-left {
    flex: 1;
    background: linear-gradient(135deg,#ff6b35,#ff8c42);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.brand-box {
    max-width: 420px;
}

.brand-title {
    font-size: 38px;
    font-weight: 700;
}

.brand-sub {
    margin-top: 10px;
    opacity: .9;
    font-size: 16px;
}

/* ===== RIGHT LOGIN SIDE ===== */
.login-right {
    flex: 1;
    background: #f6f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
}

/* CARD */
.login-card {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* inputs */
.form-control {
    height: 45px;
    border-radius: 8px;
    font-size: 14px;
}

.input-group-text {
    background: #f1f3f6;
}

/* role */
.role-box {
    background: #fff4e6;
    color: #ff7a00;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

/* button */
.btn-login {
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg,#ff6b35,#ff8c42);
    border: none;
    color: white;
    font-weight: 600;
    transition: .3s;
}

    .btn-login:hover {
        transform: scale(1.03);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .login-left {
        display: none;
    }

    .login-container {
        height: auto;
        min-height: 100vh;
    }

    .login-right {
        padding: 24px 16px;
        align-items: flex-start;
        padding-top: 40px;
    }

    .login-card {
        padding: 28px 20px;
    }
}

/* ===== LOGO ===== */

.logo-wrap {
    margin-bottom: 20px;
}

.logo-circle {
    width: 65px;
    height: 65px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff6b35,#ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(255,108,53,.4);
}

.app-title {
    font-weight: 700;
    font-size: 18px;
}

.app-sub {
    font-size: 12px;
    color: #888;
}