input[type="text"].input-validation-error,
input[type="password"].input-validation-error {
    border: 1px solid #ee0101;
}

.validation-summary-errors {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #fbeed5;
    border-radius: 4px;
}

.login-form {
    border: 1px solid rgba(153, 20, 28, 0.2);
    background-color: rgb(255, 250, 245);
    /*----------------圓角------------------------*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    min-height: 460px;
    max-width: 400px;
    padding: 32px 0;
    padding-top: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form-inner {
    margin: 0 4.5rem;
}

.login-form-title {
    color: rgb(75, 75, 75);
    font-weight: 900;
    font-size: 26px;
    text-align: center;
    margin-bottom: 24px;
}

.login-form-control-title {
    margin-left: 8px;
    font-weight: bold;
}

span {
    color: rgb(153, 81, 28);
}

.login-form-control-item {
    border-radius: 7px;
}

.login-row {
    height: 100vh;
}

#CaptchaImage {
    height: 90px;
    margin-bottom: 5px;
    width: 80%;
}

#CaptchaInputText::-webkit-input-placeholder {
    text-align: center;
}

#CaptchaInputText:-ms-input-placeholder {
    text-align: center;
}

#CaptchaInputText-error {
    display: none !important;
}

br {
    display: none;
}

.login-button {
    /* background-image: url(../../../LayoutLibrary/picTheme/Brown/image/login-button.jpg); */
    color: white;
    background-color: rgb(153, 81, 28);
    margin-top: 24px;
    border-radius: 7px;
}

.login-button:disabled {
    color: white;
    background-color: rgb(153, 81, 28);
    margin-top: 24px;
    border-radius: 7px;
}

.login-button:hover {
    /* background-image: url(../../../LayoutLibrary/picTheme/Brown/image/login-button-hover.jpg); */
    color: white;
    background-color: rgb(153, 81, 28);
}

.login-layout {
    font-size: 14px;
    color: #696868;
    /* background-image: url(../../../LayoutLibrary/picTheme/Brown/image/login-bg.jpg); */
    /* background-color: rgb(251, 249, 248); */
    background-color: #fff3e3;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.forgetPwd-layout {
    font-size: 14px;
    color: #696868;
    background-color: #fff8ed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.login-form a {
    text-decoration: underline;
}

.login-desc,
.errorarea,
.validation-summary-errors {
    max-width: 800px;
    width: 100%;
}

.accordion-body {
    max-height: 300px;
    overflow-y: auto;
    word-break: break-word;
}


@media(max-width: 500px) {
    .login-form-inner {
        margin: 0 2rem;
    }
}



@media(max-width: 767px) {
    .img-title {
        height: 30px;
    }

    #CaptchaImage {
        height: auto;
    }
}

@media screen and (max-height: 700px) {
    .login-row {
        min-height: 100vh;
        height: auto !important;
        padding-top: 5px;
    }
}