/* Vibe Coder Login Engine - Azure Bento Build */

:root {
  --bg-dark: #020617; 
  --card-bg: rgba(15, 23, 42, 0.95);
  --accent-blue: #38bdf8;
  --text-dim: #94a3b8;
}

/* Force Reset */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark) !important;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;
}

/* Background Azure Glow */
.login-view::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(2, 6, 23, 0) 70%);
    z-index: -1;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    z-index: 10;
}

.login-card {
    background: var(--card-bg);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-header {
    margin-bottom: 40px;
}

.branding {
    color: var(--accent-blue);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.7rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Input Fields */
.input-group {
    text-align: left;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    padding-left: 5px;
}

input[type="text"], 
input[type="password"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box; /* Critical for R630 layout */
}

input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

/* Submit Button */
#loginbutton {
    width: 100%;
    background: var(--accent-blue);
    color: #020617;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
}

#loginbutton:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}