﻿.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b5ed7, #0dcaf0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    color: #0b5ed7;
}

.login-group {
    margin-bottom: 14px;
}

    .login-group label {
        font-size: 13px;
        color: #555;
    }

.login-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: #0b5ed7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .login-btn:hover {
        background: #084298;
    }

.login-error {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}

.login-footer {
    text-align: center;
    font-size: 12px;
    margin-top: 12px;
    color: #777;
}
