@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

.mb-0{
    margin-bottom: 0px !important;
}

.mt-0{
    margin-top: 0px !important;
}

.mt-20{
    margin-top: 20px !important;
}

.mb-20{
    margin-bottom: 20px !important;
}

.btn{
    padding: 5px 10px;
    border-radius: 3px;
    border: none !important;
}

.bg-blue{
    background-color: #00bcd4 !important;
    color: #fff;
}

.bg-green{
    background-color: #186e7d !important;
    color: #fff;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #186e7d;
    color: #fff;
}

header .logo{
    padding-left: 10px;
}

header .logo img{
    width:80px;
}

header .appName{
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 1px 1px 3px #101010;
}

header .userProfile{
    display: flex;
    flex-direction: row;
    background-color: #445e62b0;
    padding: 27px 25px;
    align-items: center;
    gap: 10px;
}

header .userProfile img{
    width: 30px;
}

    header .userProfile a {
        color: white;
        text-decoration:none
    }
header .userProfile h4{
    font-family: sans-serif;
    font-weight: 500;
}

.loginPage{
    background-color: #186e7d;
}

.card{
    padding: 25px;
    background: #fff;
    box-shadow: 0px 0px 2px 3px #eeeeeec2;
    margin: 30px;
    border-radius: 10px;
    margin-top: 5px;
}

.loginSec{
    max-width: 450px;
    box-shadow: 0px 0px 2px 3px #00000014;
    margin: 50px auto;
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
}

.loginSec h2{
    color: #186e7d;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.loginSec h2:after{
    content: '';
    width: 80px;
    height: 3px;
    position: absolute;
    top: 60px;
    display: block;
    background: #186e7d;
    left:50%;
    transform: translateX(-50%);
}

.loginSec h2:before{
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    top: 70px;
    display: block;
    background: #186e7d;
    left:50%;
    transform: translateX(-50%);
}

.loginForm .item{
    margin-bottom: 15px;
}

.loginForm label{
    color: #186e7d;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.loginForm input{
    width: 100%;
    border: 1px solid #777;
    padding: 10px;
    border-radius: 10px;
}

.submitBtn a{
    background: #186e7d;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}

.submitBtn {
    padding: 10px;
    background: #186e7d;
    border: none;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.mt-3{
    margin-top:15px
}

.topBtns{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.topBtns .item{
    background: #e7e7e7;
    padding: 10px 25px;
    border-radius: 6px;
}

.topBtns .item a{
    text-decoration: none;
    color: #000;
}

.homeImg img {
    height: 670px;
    margin: 20px auto;
    display: block;
}

footer {
    background-color: #186e7d;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    z-index: 9;
    left: 0;
}