@font-face {
    font-family: 'HeadingNow';
    src: url('assets/fonts/HeadingNow/HeadingNow-55Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HeadingNow';
    src: url('assets/fonts/HeadingNow/HeadingNow-58Heavy.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body, button, input, select, textarea {
    font-family: 'HeadingNow', Arial, sans-serif !important;
}

body {
    background-color: #013765;
    color: #f1f1f1;
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
}

.card {
    background-color: #024a94;
    border: none;
    border-radius: 12px;
    color: #fff;
}

.card .card-title,
h1,
h2,
h3,
h4 {
    color: #ffe715;
}
.container {
    padding: 16px;
}

.btn-primary {
    background-color: #ffe715;
    border: none;
    color: #013765;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e6cf00;
    color: #012a4a;
}

.btn-danger {
    background-color: #ff4d4d;
    border: none;
}

.btn-danger:hover {
    background-color: #cc0000;
}

.list-group-item {
    background-color: #024a94;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.list-group-item:hover {
    background-color: #013765;
    color: #ffe715;
}

.answer.correct {
    background-color: #28a745 !important;
    color: #fff !important;
}

.answer.incorrect {
    background-color: #dc3545 !important;
    color: #fff !important;
}


/* Login */

.login-container {
    max-width: 400px;
    margin: auto;
    margin-top: 10%;
}

.login-container .card {
    background-color: #024a94;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.form-control {
    background-color: #013765;
    border: 1px solid #ffe715;
    color: #fff;
}

.form-control:focus {
    background-color: #013765;
    border-color: #ffe715;
    box-shadow: 0 0 5px #ffe715;
    color: #fff;
}