*{
	margin:0px;
	padding:0px;
}
/* NỀN TRANG */
body {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0a8cff 0%, #024a87 70%);
	font-family: 'fujiyama';
}

/* CANH GIỮA TOÀN BỘ */
.login-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* FORM */
.login-box {
    width: 100%;
    max-width: 380px;
    background: #eaf3ff;
    border: 2px solid #037cd5;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(3, 124, 213, 0.7);
    padding: 20px;
}

/* TIÊU ĐỀ */
.login-box h2 {
    background: linear-gradient(to bottom, #037cd5, #025ea3);
    color: #fff;
    text-align: center;
    padding: 12px;
    margin: -20px -20px 20px;
    /* border-radius: 8px 8px 0 0; */
    letter-spacing: 1px;
}

/* GROUP */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #024a87;
    font-weight: bold;
    margin-bottom: 5px;
}

/* INPUT */
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #037cd5;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(3, 124, 213, 0.8);
}

/* CAPTCHA */
/* Khối captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Input nhập captcha */


/* Ảnh captcha */
.captcha-row img,
#captchaimg {
    height: 33px;          /* QUAN TRỌNG */
    width: auto;           /* giữ tỉ lệ */
    border: 1px solid #037cd5;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
}
/* Mobile */
@media (max-width: 480px) {
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-row img,
    #captchaimg {
        height: 36px;
        margin-top: 5px;
    }
}

/* NÚT + LINK */
.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.button-row a {
    color: #037cd5;
    font-size: 13px;
    text-decoration: none;
    font-weight: bold;
}

.button-row a:hover {
    text-decoration: underline;
}

.button-row button {
    background: linear-gradient(to bottom, #037cd5, #025ea3);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.button-row button:hover {
    background: linear-gradient(to bottom, #0492ff, #037cd5);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .login-box {
        padding: 15px;
    }

    .login-box h2 {
        font-size: 16px;
    }

    .captcha-row {
        flex-direction: column;
    }

    .button-row {
        flex-direction: column;
        gap: 12px;
    }
}

.LoginErr{
	font-family:'fujiyama';
	font-size: 18px;
	color:#037cd5;
	text-align:center;
	text-transform:uppercase;
	padding:10px 0 15px;
}

.LoginErr1{
	font-family:'bodoni';
	font-size: 16px;
	color:#002901;
	text-align:center;
	text-transform:capitalize;
	padding:0 0 20px;
}

.LoginErr1 a{
	color:#037cd5;
}

.LoginErr1 a:hover{
	color:#002901;
}
