@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
:root {
    --primary: #00A9F2;
    --secondary: #0042D0;
    --bgColor: #EBF8FE;
    --navbarColor: rgb(46, 112, 255);
    --footerBg: #57565C;
    --labelColor: #151940;
    --submitBtnBg: linear-gradient(180deg, rgba(0, 242, 68, 1) 62%, rgba(0, 174, 59, 1) 100%);
    --submitBtnGrayBg: linear-gradient(180deg, rgba(196, 196, 196, 1) 0%, rgba(131, 131, 131, 1) 70%);
    --cancelBtnBg: linear-gradient(180deg, rgba(250, 14, 14, 1) 66%, rgba(231, 6, 6, 1) 100%);
    --deleteBtnBg: #F74141;
    --fileCardBg: rgb(46, 112, 255, 0.16);
    --tickIconColor: #00AE3B;
    --progressBg: #00AE3B
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: aliceblue;
}

.googleBtn{
    background-color: #ee5645;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
}

.googleBtn:hover{
    background-color: #ee5645;
}

.btn-primary{
    width: 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.form-control{
    color: rgba(0, 0, 0, .87);
    border-color: rgba(0, 0, 0, .42);
    box-shadow: none !important;
    border-radius: 4px 4px 0 0;
}

h4{
    font-size: 2rem !important;
    font-weight: 600;
}

.form-label{
    font-weight:800 ;
}

.form-control:focus{
    border: 1px solid rgba(0, 0, 0, .42);
}

.hide-icon:hover{
    cursor: pointer;
    color: #6c757d;
}

.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
 }

 .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar {
    background: #fff;
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #000;
}

.nav-link:focus,
.nav-link:hover {
    color: #000;
}

 
.footer {
    bottom: 0;
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
}

    /* footer css */
    .footer .terms-div {
        display: flex;
        gap: 10px;
    }

    .footer .terms-div a {
        color: rgba(255,255,255,.5)!important;
        font-size: 16px;
        text-decoration: none;
        border-left: 1px solid #D1D1D1;
        padding-left: 10px;
        font-weight: 500;
    }
        
    .footer .terms-div a:first-child {
        border-left: none;
    }

    .footer .copy-right-div {
        color: rgba(255,255,255,.5)!important;
        font-size: 16px;
        font-weight: 500;
    }

.main-container{
    height: 100vh;
    display: flex;
    flex-direction: column;    
}

.nav-item{
    color: rgb(45 43 43) !important;
    font-size: 16px;
    font-weight: 600;
}

.nav-item:hover{
    text-decoration: underline;
}

.nav-item i{
    margin-right: 5px;
}

@media only screen and (max-width:600px) {
    form{
        width: 100% !important;
    }
    
    .navbar-nav {
        margin-top: 6%;
    }
}