* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    padding: 20px;
}

.login-container {
    max-width: 400px;
    margin: auto;
    background: #178acc;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-top: 0;
    font-size: 24px;
    text-align: center;
}

.subtext {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px;
    background: #eee;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.tab.active {
    background: #666;
    color: #fff;
}

form {
    background: #fff;
    padding: 15px;
    color: #000;
    border-radius: 5px;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.captcha-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 5px;
    flex-wrap: wrap;
}

.captcha-box img {
    height: 35px;
}

.captcha-box input {
    flex: 1;
    padding: 8px;
    min-width: 100px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.refresh-btn {
    background: #f90;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.login-btn {
    background: #e02424;
    color: #fff;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.forgot {
    color: #fff;
    display: block;
    margin-top: 15px;
    text-align: center;
    text-decoration: underline;
    font-size: 14px;
}

.contact-info {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
}


/* ✅ Mobile Responsive */

@media (max-width: 480px) {
    .captcha-box {
        flex-direction: column;
        align-items: stretch;
    }
    .captcha-box img,
    .captcha-box input,
    .captcha-box button {
        width: 100%;
        margin-bottom: 5px;
    }
}

.top-bar {
    display: flex;
    justify-content: end;
    background: #fff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.btn-docs,
.btn-lang {
    border: none;
    padding: 5px 10px;
    margin: 0 2px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
}

.btn-docs {
    background: #4caf50;
    color: white;
}

.btn-lang {
    background: #979797;
    color: white;
}