@font-face {
    font-family: cgothic;
    src: url("https://minnwx.com/assets/cgothic.ttf");
}

@font-face {
    font-family: exo;
    src: url("https://minnwx.com/assets/exo.ttf");
}

body {
    font-family: 'cgothic', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

logo {
    right: 10%;
}

.login-container {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.input-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #ffffff;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 4px;
    font-family: 'exo', sans-serif;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.input-group .error {
    color: red;
    font-size: 12px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.login-btn:hover {
    background-color: #0056b3;
}

.response-message {
    text-align: center;
    font-family: 'exo', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.success {
    color: green;
}

.error {
    color: red;
}