@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,600;0,700;1,400&display=swap');

body {
    background-color: #0f1016;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background-color: #191b24;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #006cff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 20px;
}

h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
}

.input-group {
    width: 100%;
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #b0b8c4;
}

.login-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #252837;
    border-radius: 4px;
    background-color: #252837;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.login-input:focus {
    border-color: #006cff;
    outline: none;
}

.error-message {
    color: #EA4247;
    font-size: 14px;
    margin: 8px 0;
    text-align: center;
    min-height: 18px;
}

.login-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #006cff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.login-button:hover {
    background-color: #0055cc;
}

.login-footer {
    margin-top: 24px;
    font-size: 14px;
    color: #b0b8c4;
    text-align: center;
}