@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Space+Mono&display=swap');

:root {
    --bg-color: #050505;
    --gold-primary: #c5a059;
    --gold-hover: #d4b475;
    --text-color: #ffffff;
    --border-color: rgba(197, 160, 89, 0.3);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.login-box {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Swiss Style Grid Accents */
.login-box::before, .login-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--gold-primary);
    border-style: solid;
}

.login-box::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.login-box::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-square {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-letter {
    font-size: 32px;
    font-weight: 300;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.access-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 40px;
    opacity: 0.8;
}

.login-form {
    width: 100%;
}

.input-group {
    margin-bottom: 20px;
}

input[type="password"] {
    width: 100%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    padding: 15px;
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="password"]:focus {
    border-color: var(--gold-primary);
}

.submit-btn {
    width: 100%;
    background-color: var(--gold-primary);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.submit-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.error-message {
    margin-top: 20px;
    color: #ff4444;
    font-size: 12px;
    letter-spacing: 1px;
    height: 14px;
}

.footer {
    margin-top: 40px;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

/* Background Animation Elements */
.bg-particle {
    position: absolute;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}
