@import url('https://fonts.googleapis.com/css2?family=Mitr&display=swap');

body {
    background-color: var(--bs-dark-bg-subtle);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto auto;
}

.ft {
    font-family: 'Mitr', sans-serif;
}

.navbar {
    margin-top: 20px;
    margin-bottom: 20px;
}

.navbar {
    border-radius: 10px;
}

.navbar {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.b-content {
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card-header {
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.125);
}
.badge {
    padding: 0.5em 1em;
}
.table {
    margin-bottom: 0;
}
.table th {
    border-top: none;
}

#captchaImage {
    height: 40px;
    cursor: pointer;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}