
.container {
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    max-width: 400px;
    width: 100%;
    margin-top:100px;
}

.logo img {
    max-width: 210px;
    margin: 0 auto 20px;
}

.login-form h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.login-form input {
    /* width: 100%; */
    padding: 10px;
    /* margin-bottom: 15px; */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form label {
    color: #727171;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.login-form input[type="checkbox"] {
    margin-right: 10px;
}

.login-form button {
    background-color: #8c010c;
    color: #fff;
    padding: 8px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 14px;
}
.text-success {
    color: #1abf20 !important;
}
.pr {
    float: right !important;
}
.pl {
    float: left !important;
}
.text-left{
    text-align: left;
}
.login-form button:hover {
    background-color: #580201;
}
.cbtn{
    background-color: #666 !important;
}
.btns:disabled {
    cursor: not-allowed;
    background-color: #580201;
}
.lable {
    font-size: 14px;
    margin-bottom: 4px;
    color: #727171;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #000000;
    background-color: #fff;
    border-color: #b5b5c3;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.login-form .terms {
    margin-top: 14px;
    margin-bottom:20px;
    display: flex;
    align-items: center;
    color: #727171;
}
.form-term{
    text-align: left;
    margin-top: 10px;
}
.error-message{
    display: block;
    margin-top: 4px;
    text-align: left;
    color: #e30414;
    font-size: 12px;
    font-weight: 400;
}
#errmsg {
    margin-bottom: 15px;
    font-size: 15px;
    background: #fff2f2;
    padding: 10px;
    border-radius: 12px;
    line-height: 20px;
    margin-top: 15px;
}
.d-none {
    display: none;
}
.success-message{
    display: block;
    margin-top: 4px;
    text-align: left;
    color: #10b516;
    font-size: 12px;
    font-weight: 400;
}
#sucmsg {
    margin-bottom: 15px;
    font-size: 15px;
    background: #ecffec;
    padding: 10px;
    border-radius: 12px;
    line-height: 20px;
    margin-top: 15px;
}