*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f7f7f7;
    font-family:Arial,sans-serif;
    color:#333;
}

a{
    text-decoration:none;
}

/* ================= LOGIN ================= */

.page{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px;
}

.left-side{
    max-width:500px;
}

.pattern{
    font-size:60px;
    color:#E6A017;
    font-weight:700;
    margin-bottom:80px;
}

.left-side h1{
    font-size:72px;
    color:#100A7C;
}

.left-side h2{
    font-size:48px;
    color:#100A7C;
}

.subtitle{
    margin-top:25px;
    color:#666;
    font-size:20px;
}

.current-date{
    margin-top:15px;
    color:#999;
}

.login-card{
    width:360px;
    background:white;
    border-radius:40px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.logo{
    width:170px;
    display:block;
    margin:auto;
    margin-bottom:40px;
}

.login-card h3{
    text-align:center;
    color:#100A7C;
    margin-bottom:30px;
}

label{
    display:block;
    color:#666;
    margin-bottom:10px;
}

input{
    width:100%;
    height:55px;
    border:none;
    background:#f3f3f3;
    border-radius:20px;
    padding:0 20px;
    margin-bottom:25px;
}

button{
    width:100%;
    height:55px;
    border:none;
    border-radius:20px;
    background:#100A7C;
    color:white;
    font-size:18px;
    cursor:pointer;
}

.copyright{
    margin-top:35px;
    text-align:center;
    color:#999;
}

/* ================= DASHBOARD ================= */

.dashboard{
    max-width:1000px;
    margin:auto;
    padding:40px 20px 80px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ================= WELCOME ================= */

.welcome-block{
    width:700px;
    background:white;
    border-radius:35px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:35px;
}

.welcome-block h1{
    font-size:22px;
    color:#100A7C;
    margin-bottom:25px;
}

.welcome-block h3{
    color:#100A7C;
    margin-bottom:18px;
}

.welcome-block ul{
    margin-left:25px;
    line-height:2;
    color:#555;
}

.good-day{
    margin-top:30px;
    color:#E6A017;
    font-size:18px;
    font-weight:700;
}

/* ================= MENU ================= */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2,180px);
    gap:22px;
}

.menu-card{
    width:180px;
    height:100px;
    background:white;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.2s;
}

.menu-card:hover{
    transform:translateY(-4px);
}

.emoji{
    font-size:24px;
    margin-bottom:8px;
}

.menu-card span{
    color:#100A7C;
    font-size:15px;
    font-weight:700;
}

/* ================= EMPLOYEE ================= */

.employee-card{
    width:250px;
    background:white;
    border-radius:30px;
    margin-top:35px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.employee-name{
    font-size:18px;
    color:#100A7C;
    font-weight:700;
    margin-bottom:10px;
}

.employee-role{
    color:#999;
    margin-bottom:20px;
}

.logout-button{
    display:block;
    background:#100A7C;
    color:white;
    padding:15px;
    border-radius:18px;
    font-weight:700;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

    .page{
        flex-direction:column;
        gap:40px;
        padding:30px;
    }

    .left-side{
        text-align:center;
    }

    .pattern{
        margin-bottom:40px;
        font-size:42px;
    }

    .welcome-block{
        width:100%;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .menu-card{
        width:250px;
    }
}
/* Открытие смены */

.shift-card {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.shift-title {
    color: #14148c;
    margin-bottom: 30px;
}

.shift-input {
    width: 100%;
    height: 55px;
    border: none;
    background: #f3f3f3;
    border-radius: 15px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 16px;
    box-sizing: border-box;
}

.shift-button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: #16108c;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== LOGIN NEW ===== */

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 100px;
    max-width:1700px;
    margin:0 auto;
}

.login-left{
    max-width:700px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.month-quote{
    font-size:72px;
    font-weight:700;
    color:#E6A017;
    line-height:1.1;
    margin-bottom:90px;
    max-width:700px;
}

.login-left h1{
    font-size:84px;
    color:#100A7C;
    line-height:0.9;
    font-weight:700;
}

.login-left p{
    margin-top:25px;
    font-size:20px;
    color:#666;
}

.current-date{
    margin-top:25px;
    font-size:18px;
    color:#9a9a9a;
}

.login-card{
    width:380px;
    background:white;
    border-radius:40px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.login-logo{
    width:170px;
    display:block;
    margin:0 auto 30px;
}

.login-card h2{
    text-align:center;
    color:#100A7C;
    margin-bottom:35px;
}

.login-card label{
    display:block;
    color:#666;
    margin-bottom:10px;
}

.login-card input{
    width:100%;
    height:55px;
    border:none;
    background:#f3f3f3;
    border-radius:20px;
    padding:0 20px;
    margin-bottom:25px;
}

.login-card button{
    width:100%;
    height:55px;
    border:none;
    border-radius:20px;
    background:#100A7C;
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.copyright{
    margin-top:35px;
    text-align:center;
    color:#999;
}

@media(max-width:900px){

    .login-page{
        flex-direction:column;
        padding:40px 25px;
        gap:50px;
    }

    .month-quote{
        display:none;
    }

    .login-left{
        text-align:center;
    }

    .login-left h1{
        font-size:54px;
    }
}
.welcome-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.welcome-header h1{
    margin:0;
    color:#100A7C;
}

.logout-link{
    color:#100A7C;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}

.logout-link:hover{
    opacity:.7;
}
.logout-link{
    background:#100A7C;
    color:white;
    padding:10px 18px;
    border-radius:15px;
    font-weight:700;
}