body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(155, 114, 9, 0.98);
    padding: 20px 0;
}

.login-container {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: block;
    margin: 0 auto 2px;
    width: 100px;
}

.title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #a46c0d;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a46c0d;
}

.captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.captcha-container img {
    flex: 1;
}

.captcha-container button {
    flex-shrink: 0;
}

.btn-primary {
    background-color: #d08919;
    border-color: #d08919;
}

.btn-primary:hover {
    background-color: #a45817;
    border-color: #a45817;
}

.btn-primary:focus, .btn-primary:active {
    background-color: #a45817 !important;
    border-color: #a45817 !important;
    box-shadow: none;
}

.btn-theme {
    background-color: #d08919;
    border-color: #d08919;
    color: #fff;
}

.btn-theme:hover {
    background-color: #a45817;
    border-color: #a45817;
    color: #fff;
}

.btn-theme:focus, .btn-theme:active {
    background-color: #a45817 !important;
    border-color: #a45817 !important;
    box-shadow: none;
}

a {
    color: #a46c0d;
}

a:hover {
    color: #a45817;
}

input:focus {
    outline: 2px solid #da9832 !important;
    box-shadow: 0 0 5px rgba(164, 108, 13, 0.5) !important;
    border-color: #de9a2f !important;
}
