/* static/login.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1d21;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.login-box {
    background-color: #2c313a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    margin: 0 0 10px;
    color: #ffffff;
}

.subtitle {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.error {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #c0c0c0;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #4a4a4a;
    border-radius: 8px;
    background-color: #212529;
    color: #e0e0e0;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #4d90fe;
    box-shadow: 0 0 0 3px rgba(77, 144, 254, 0.2);
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #4d90fe;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #357ae8;
}
