/*//////////////////////////////////////////////////////////////////
        [ RESTYLE TAG ]*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    font-family: sans-serif;
    background-color: #f2f2f2;
}

/*//////////////////////////////////////////////////////////////////
        [ Logo container ]*/
.imagecontainer {
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 15px;
}

#btnHomeLogo {
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}
/*---------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
        [ Language ]*/
.language-col {
    display: flex;
    background-color: #f2f2f2;
    justify-content: end;
    margin-right: 20px;
    margin-top: 20px;
}

/*//////////////////////////////////////////////////////////////////
        [ Login container ]*/
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 90vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}

.wrap-login100 {
    width: 400px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px 0px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------------------------------
         [ Form ]*/
.login-form {
    width: 100%;
    padding: 0px 30px 0px 30px;
}

.login100-form-title {
    display: block;
    font-weight: 550;
    font-size: 28px;
    color: #342e29;
    line-height: 1.2;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

/*------------------------------------------------------------------
         [ Input ]*/
.form-group label.form-label {
    font-weight: 550;
}

.form-label a {
    color: #E4AB3B;
}

.input-group-text {
    border-radius: 0px;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
}

#txtUserName {
    border-radius: 0px;
}

#txtPassword {
    border-radius: 0px;
}

#txtCaptcha {
    border-radius: 0px;
}

#ShowPass {
    cursor: pointer;
}

#forgetPassword {
    text-align: center;
    align-items: center;
    font-weight: 550;
}

    #forgetPassword:hover {
        text-decoration: underline;
        text-align: center;
    }

/*------------------------------------------------------------------
        [ Button ]*/
.btn-login {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    width: 100%;
}

#btnMemberLogin {
    background-color: #E4AB3B;
    color: #fff;
    border: none;
    margin-bottom: 10px;
}

    #btnMemberLogin:hover {
        background-color: #b58d3d;
    }

#btnHomepage {
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 5px;
    margin-bottom: 20px;
}

    #btnHomepage:hover {
        background-color: #F3F4F6;
        text-decoration: none;
        transition-duration: 0.1s;
    }

/*------------------------------------------------------------------
 [ Forgot Password Form ]*/
.reset-form {
    width: 100%;
    padding: 0px 30px 0px 30px;
}
/*------------------------------------------------------------------
        [ Input ]*/
.form-group.col .form-label {
    margin: 1px;
}

.input-group-text {
    border-radius: 0px;
}

.form-group label.form-label {
    font-weight: 550;
}

#txtUserName {
    border-radius: 0px;
    border: 1px solid #dbdbdb;
}

#txtPassword {
    border-radius: 0px;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
}

/* Add this CSS to your existing styles */

.form-group.col .form-control {
    border-radius: 0; /* Set border-radius to 0 to remove it */
}

/* If you want to remove the border radius for the input-group as well */
.form-group.col .input-group {
    border-radius: 0; /* Set border-radius to 0 to remove it */
}

/*------------------------------------------------------------------
        [ Button ]*/
#sendTAC {
    color: dimgrey;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 5px;
    width: 100%;
}

    #sendTAC:hover {
        background-color: #F3F4F6;
        text-decoration: none;
        transition-duration: 0.1s;
    }

#btnSubmit {
    background-color: #E4AB3B;
    color: #fff;
    border: none;
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    border-radius: 5px;
}

    #btnSubmit:hover {
        background-color: #b58d3d;
    }

#btnBack {
    color: #237fb7;
    font-size: 14px;
}

    #btnBack:hover {
        text-decoration: underline;
    }
