@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

body.page-login {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 95, 109, 0.16), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(103, 232, 249, 0.1), transparent 24%),
        linear-gradient(180deg, #08090d 0%, #0b0c12 100%);
    font-family: 'Space Grotesk', sans-serif;
}

body.page-login::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.16;
    pointer-events: none;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-box {
    width: 100%;
    max-width: 430px;
    padding: 38px;
    border-radius: 28px;
    background: rgba(14, 17, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.login-brand {
    text-align: center;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.login-brand span {
    color: #f1187d;
}

.login-copy {
    margin-bottom: 28px;
    text-align: center;
    color: #b7bcc9;
    line-height: 1.7;
}

.login-box .form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.login-box .form-group label {
    margin-bottom: 8px;
    color: #d8dce6;
    font-size: 0.92rem;
    font-weight: 600;
}

.login-box .form-group input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 14px;
    font: inherit;
}

.login-box .form-group input:focus {
    outline: none;
    border-color: rgba(103, 232, 249, 0.42);
    box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.12);
}

.btn-login {
    width: 100%;
    margin-top: 10px;
    padding: 15px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f80eec 0%, #ec22d1 50%, #f705f7 100%);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(255, 95, 109, 0.22);
}

.btn-login:hover {
    transform: translateY(-2px);
}

.error-msg {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(251, 113, 133, 0.12);
    border: 1px solid rgba(251, 113, 133, 0.2);
    color: #ffe4e6;
    text-align: center;
}

.back-home {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #00f500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.back-home:hover {
    color: #fff;
}
