
/* ===== CLEAN FUTURISTIC LOGIN (NO TAILWIND) ===== */

body {
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0,0,0,0.04);
    filter: blur(80px);
    border-radius: 999px;
}

.bg-glow.top {
    top: -200px;
    left: -200px;
}

.bg-glow.bottom {
    bottom: -200px;
    right: -200px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

.login-subtitle {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

.login-small-text {
    margin-top: 2px;
    font-size: 11px;
    color: #999;
    text-align: left;
    width: 100%;
    max-width: 420px;
}

.input-group {
    margin-top: 16px;
}

.input-label {
    font-size: 12px;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.input-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: 0.2s;
    font-size: 14px;
}

.input-field:focus {
    border-color: #000;
}

.btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.error {
    font-size: 12px;
    color: red;
    margin-top: 6px;
}
