/* =============================================
   НОВЫЙ МОДУЛЬ: css/login-top.css
   Папка: zakazi/css/
   Назначение: Красивый современный дизайн страницы входа
   ============================================= */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.login-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(47,128,237,0.15);
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
}

.login-card h1 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 28px;
}

.login-card p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #2f80ed;
    box-shadow: 0 0 0 4px rgba(47,128,237,0.15);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: #2f80ed;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
}

.btn-login:hover {
    background: #1e6bd4;
}