﻿/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Colors */
:root {
    --blue: #0b66a3;
    --teal: #0bb8a8;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
}

/* Header */
.header {
    background: var(--blue);
    padding: 16px 32px;
}

.logo {
    height: 36px;
}

/* Page Layout */
.page {
    background: var(--bg-light);
    min-height: calc(100vh - 68px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Card */
.card2 {
    background: var(--white);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Left Section */
.left {
    flex: 1;
}

.left h1 {
    color: var(--blue);
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing:0%;
    font-weight: 600;
    text-align:left;
}

.login-box {
    background: #f9fafb;
    padding: 32px;
    border-radius: 10px;
    max-width: 420px;
}

.login-box h2 {
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: left;
}

.login-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0%;
    text-align: left;
}

/* Buttons */
.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size:20px;
    margin-bottom: 16px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    letter-spacing:0%;
    
}

.btn span {
    font-size: 20px;
}

.btn-employee {
    background: var(--blue);
}

.btn-customer {
    background: var(--teal);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Right Section */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .card2 {
        padding: 32px;
    }

    .right {
        display: none;
    }
}
