﻿.employee-auth-page {
    min-height: 80vh;
    background: #f8fbff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.employee-auth-container {
    width: min(92%, 1200px);
    margin: 0 auto;
}

.employee-auth-header {
    text-align: center;
    margin-bottom: 50px;
}

.employee-label {
    color: #f97316;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.employee-auth-header h1 {
    color: #0b1f4d;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 15px 0;
}

.employee-auth-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.employee-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.employee-card {
    background: white;
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.employee-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff3e6;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .employee-icon svg {
        width: 42px;
        height: 42px;
    }

.employee-card h2 {
    color: #0b1f4d;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.employee-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
}

.employee-btn {
    min-height: 56px;
    padding: 0 32px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: #f97316;
    color: white;
}

.secondary-btn {
    background: #0b1f4d;
    color: white;
}

@media (max-width: 768px) {

    .employee-auth-grid {
        grid-template-columns: 1fr;
    }

    .employee-card {
        padding: 30px;
    }
}
