.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-box {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-logo img {
    width: 180px;
    height: auto;
}

.btn-sso {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: #fff4e5;
    color: #ff9800;
    border: 1.5px solid #ff9800;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-sso:hover {
    background-color: #ffe0b2;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    color: #bbbbbb;
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
}

.form-group input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: border-color 0.2s;
    background-color: #fafafa;
}

.form-group input:focus {
    border-color: #ff9800;
    background-color: #ffffff;
}

.form-group input::placeholder {
    color: #bbbbbb;
}

.error-msg {
    font-size: 13px;
    color: #e53935;
    background-color: #fff0f0;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 10px 14px;
}

.warn-msg {
    font-size: 13px;
    color: #e65100;
    background-color: #fff4e5;
    border: 1px solid #ffcc80;
    border-radius: 8px;
    padding: 10px 14px;
}

.btn-login {
    width: 100%;
    height: 48px;
    background-color: #ff9800;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #e68900;
}

.btn-login:active {
    background-color: #cc7a00;
}