/*******************
 * Login Page Styles
 *******************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at top left, #5b6cff 0%, transparent 40%),
        radial-gradient(circle at bottom right, #00c6ff 0%, transparent 35%),
        linear-gradient(135deg, #0f172a, #111827);

    color: #fff;
}

.login-card {
    width: 100%;
    max-width: 430px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 22px;

    padding: 42px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
    width: 72px;
    height: 72px;

    border-radius: 20px;

    margin: auto;

    background: linear-gradient(135deg, #6366f1, #06b6d4);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.login-card h1 {
    margin-top: 24px;
    text-align: center;
    color: #fff;
    font-size: 32px;
}

.subtitle {
    color: #cbd5e1;

    margin-top: 8px;

    text-align: center;
}

.form {
    margin-top: 34px;
}

.field {
    margin-bottom: 18px;
}

label {
    display: block;

    margin-bottom: 8px;

    color: #dbeafe;

    font-size: 14px;
}

.input {
    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    outline: none;

    transition: 0.2s;
}

.input:focus {
    background: rgba(255, 255, 255, 0.12);

    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.input::placeholder {
    color: #94a3b8;
}

.button {
    width: 100%;

    margin-top: 10px;

    border: none;

    border-radius: 14px;

    padding: 16px;

    cursor: pointer;

    color: white;

    font-size: 16px;

    font-weight: 700;

    background: linear-gradient(135deg, #6366f1, #06b6d4);

    transition: 0.25s;
}

.button:hover {
    transform: translateY(-1px);
}

a {
    color: #94a3b8;

    text-decoration: none;

    transition: 0.2s;
}

.error {
    margin-top: 12px;

    color: #ffb4b4;

    font-size: 14px;
}

.footer {
    margin-top: 24px;

    text-align: center;

    color: #94a3b8;

    font-size: 14px;
}
