/*========================================= 
  WEB FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

/*========================================= 
  RESET
=========================================*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.1;
  color: inherit;
  font-family: 'Poppins', sans-serif !important;
}

.text-uppercase {text-transform: uppercase;}


.f100 {font-weight: 100; !important}
.f200 {font-weight: 200; !important}
.f300 {font-weight: 300; !important}
.f400 {font-weight: 400; !important}
.f500 {font-weight: 500; !important}
.f600 {font-weight: 600; !important}
.f700 {font-weight: 700; !important}
.f800 {font-weight: 800; !important}
.f900 {font-weight: 900; !important}

.fs8 {font-size: 8px; !important}
.fs9 {font-size: 9px; !important}
.fs10 {font-size: 10px; !important}
.fs11 {font-size: 11px; !important}
.fs12 {font-size: 12px; !important}
.fs13 {font-size: 13px; !important}
.fs14 {font-size: 14px; !important}
.fs15 {font-size: 15px; !important}
.fs16 {font-size: 16px; !important}
.fs18 {font-size: 18px; !important}
.fs20 {font-size: 20px; !important}
.fs24 {font-size: 24px; !important}
.fs30 {font-size: 30px; !important}
.fs36 {font-size: 36px; !important}
.fs40 {font-size: 40px; !important}
.fs50 {font-size: 50px; !important}
.fs60 {font-size: 60px; !important}

a {
    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

a:active,
a:hover {
    text-decoration: none;
    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.fc-gray {
    color: #565c6b;
}

.fc-white {
    color: #ffffff !important;
}

/*========================================= 
  LOGIN
=========================================*/


.login,
.image {
  min-height: 100vh;
}

.bg-image {
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
}

.login-microerp p {
    color: #565c6b;
}

.login-microerp label {
    color: #565c6b;
    font-size: 13px;
    font-weight: 600;
}

.login-microerp h1 {
    color: #1c2236;
    
}

.form-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 30px 1rem;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 0.1rem 1rem rgba(51, 51, 112, 0.15) !important;

    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.form-lg:focus {
    box-shadow: 0 0.1rem 1rem rgba(51, 51, 112, 0.25) !important;

    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.form-md {
    height: calc(1.5em + 1rem + 2px);
    padding: 25px 1rem;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 0.1rem 1rem rgba(51, 51, 112, 0.15) !important;

    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.form-md:focus {
    box-shadow: 0 0.1rem 1rem rgba(51, 51, 112, 0.25) !important;

    -moz-transition: all 0.7s ease-in;
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.line {
    width: 100%;
    height: 1px;
    background: #ededed;
    margin-bottom: 20px;
}

.btn-green {
    color: #fff;
    background: #2d5237;
}

    .btn-green:hover {
        color: #fff;
        background: #1a3a23;
    }

    .btn-green:focus, .btn-green.focus {
        color: #fff;
        background: #1a3a23;
    }
