body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #2b273c;
    padding: 0px;
    margin: 0px;
    background: #FFF;
}


a {
    text-decoration: none;
    color: #206289 !important;
}

a:hover {
    text-decoration: underline;
    color: #106e99;
}


header {
    background: #f8ce61;
    padding: 10px 0px;
}

header.stick {
    position: fixed;
    width: 100%;
    z-index: 9;
}


header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 600;
}


.secpad {
    padding: 100px 0px;
}

.secpad h1, .secpad h2 {
    color: #2b273c;
    font-size: 22px;
    line-height: 36px;
    font-weight: 900;
    margin-bottom: 0px;
}


#login-form .form-group {
    position: relative;
    margin-bottom: 5px;
    margin-top: 25px;
}

#login-form .form-control {
    font-size: 14px;
    color: #2b273c; 
    background: #FFF;
    height: 48px;
    padding: 13px 16px;
    border: 1px solid #999;
    transition: box-shadow .2s ease-in-out;
}

#login-form .form-control:focus {
    outline: none;
    border: 1px solid #111;
}

#login-form .form-group>label {
    bottom: 30px;
    left: 15px;
    position: absolute;
    background-color: white;
    padding: 0px 5px 0px 5px;
    font-size: 12px;
    transition: 0.2s;
    pointer-events: none;
}

#login-form .form-control:focus~label {
    bottom: 30px;
    font-size: 12px;
}

#login-form .form-control:valid~label {
    bottom: 30px;
    font-size: 12px;
}

.mybtn {
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 20px;
    max-width: 100%;
    text-transform: uppercase;
    border: 1px solid #f8ce61;
    background-color: #f8ce61;  
    outline: none !important;
    transition: 0.5s ease-in-out;
}

.mybtn:hover {
    background-color: #111;
    border: 1px solid #111;
    color: #f8ce61;
}

.mybtn-block {
    display: block;
    width: 100%;
}


#togglePassword {
    position: absolute;
    right: 15px;
    top: 18px;
    cursor: pointer;
}

.fa-eye:before {
    content: "\f06e" !important;
}


.redtext {
    color: #F00;
}