/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    font-family: "Manrope", sans-serif;
}

:root {
    --primary: #0d9dda;
    --secondary: #0581b6;
    --menu-bg: #405189;
    --primary-light: #ddf5ff;
    --grey: #999999;
    --grey-dark: #666666;
    --grey-light: #eeeeee;
    --black: #222222;
    --light-border: #e8e8e8;
    --bg1: #fef7e0;
    --bg2: #e3edfb;
    --bg3: #d0f5dc;
    --bg4: #f5deff;
    --bg5: #fae9f2;
    --bg6: #e9f5fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Poppins", sans-serif; */
    font-weight: 600;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.logo {
    text-align: center;
    padding-top: 20px;
}

.logo img {
    width: 100%;
    max-width:300px
}

.login-sec {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    /* box-shadow:0 0 5px #e9e9e9; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    min-height: 600px;
}

.login-sec label {
    font-weight: 500;
    padding-bottom: 3px;
}

.form-control {
    box-shadow: none !important;
    border-radius: 0 !important;
    height: 40px;
}

.btn-submit {
    outline: none;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 7px 25px;
    transition: all 0.4s;
}

.btn-submit:hover {
    background-color: var(--secondary);
}

/* .brd-right {
    border-right: solid 1px #e8e8e8;
} */

header {
    padding: 10px;
    border-bottom: solid 1px #d5d5d5;
}

.logo-home img {
    width: 100%;
    max-width:150px
}

.menu {
    text-align: right;

}

.menu li {
    display: inline;
    margin: 0 5px;
}