* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.backGround {
    background: #192534;
    height: 54px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.backGround .brand {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.brand span {
    font-weight: 400;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

#loginForm {
    width: 420px;
    background: #ffffff;
    padding: 28px 32px 24px 32px;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    margin-bottom: 12px;
}

#logoImg {
    max-height: 72px;
    max-width: 140px;
    border-radius: 90px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.password-inccorect {
    min-height: 20px;
    margin: 6px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#errMsg {
    font-size: 14px;
    color: #E53935;
}

.input-box {
    position: relative;
    margin-bottom: 14px;
}

.input-box input {
    width: 100%;
    height: 42px;
    padding: 0 16px 0 38px;
    border: 1px solid #b0b0b0;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
}

.input-box input:focus {
    border-color: #0063b1;
}

.input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #070202;
}

.remember-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.remember-password label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
}

.remember-password label a {
    color: #0063b1;
    text-decoration: none;
}

.remember-password a {
    color: #0063b1;
    text-decoration: none;
    font-size: 14px;
}

.btn {
    width: 100%;
    height: 42px;
    background: #0063b1;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background: #005296;
}

.language-section {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.language-section select {
    padding: 6px 10px;
    border: 1px solid #b0b0b0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}