/* BASE */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* LAYOUT */
.login-page {
    display: flex;
    height: 100vh;
}

/* ===================== */
/* LEFT SIDE (70%) */
/* ===================== */
.login-left {
    width: 70%;
    position: relative;
    background: url('img/bengkel.png') center/cover no-repeat;
}

.login-left .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.login-left h1 {
    font-size: 36px;
    margin: 0;
}

.login-left p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===================== */
/* RIGHT SIDE (30%) */
/* ===================== */
.login-right {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9;
}

/* ===================== */
/* LOGIN CARD */
/* ===================== */
.login-card {
    width: 85%;
    background: white;

    padding: 40px 30px;
    border-radius: 14px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    text-align: center;
}

/* TITLE */
.login-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 600;
}

/* SUBTITLE */
.subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* ===================== */
/* INPUT */
/* ===================== */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 42px;

    border-radius: 10px;
    border: 1px solid #d1d5db;

    font-size: 15px;
    background: #f9fafb;

    outline: none;
    transition: 0.25s;
}

/* FOCUS */
.input-group input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* ===================== */
/* BUTTON */
/* ===================== */
.login-card button {
    width: 100%;
    padding: 14px;

    font-size: 15px;
    font-weight: 600;

    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;

    border: none;
    border-radius: 10px;

    cursor: pointer;
    transition: 0.25s;

    box-shadow: 0 8px 20px rgba(37,99,235,0.25);
}

/* HOVER */
.login-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37,99,235,0.35);
}

/* ACTIVE */
.login-card button:active {
    transform: scale(0.98);
}

/* ===================== */
/* BACK HOME */
/* ===================== */

.back-home{

    margin-top:20px;

    text-align:center;
}

.back-home a{

    color:#2563eb;

    font-size:14px;

    text-decoration:none;

    font-weight:500;

    transition:0.25s;
}

.back-home a:hover{

    color:#1e40af;

    text-decoration:underline;
}