body{
    background-color: #f3f6f9;
    font-size: 15px;
    font-family: 'Inter', sans-serif
}


p{
    font-size: 16px;
    color: #575e66;
}

a,
a:link,
a:visited{
    color: #345886;
    text-decoration: none;
    
}
a:hover{
    color: #2e6cbd;
    text-decoration: none;
}
a:active{
    color: #345886;
    text-decoration: none;
}

.menubar{
    height: 80px;
}
.menu-nav{
    display: block;
    padding: 25px 0 25px 0;
    box-sizing: border-box;
}
.logo{
    height: 30px;
    width: auto;
    display: inline;
    margin-top: 5px;
}
.manu-items{
    float: right;
    list-style: none;
    padding: 0;

}

.manu-items > li{
    display: inline-block;
    margin-left: 5px;
}

.manu-items > li > a{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0px 20px;
}

.round{
    border-radius: 20px;
    border: 1px solid #345886;
    color: #345886;
    transition: all 0.3s ease-out;
}

.round:hover{
    color: #f3f6f9;
    background-color: #2e6cbd;
}


.action-btn,
.action-btn:link,
.action-btn:visited{
    padding: 13px 25px;
    color: #f3f6f9;
    background-color: #2e6cbd;
    transition: all 0.3s ease-out;
    font-size: 1.1em;
    border-radius: 5px;
}
.action-btn:hover{
    color: #f3f6f9;
    background-color: #345886;
}
.action-btn:active{
    color: #f3f6f9;
    background-color: #2e6cbd;
}



.hero{
    margin-top: 20vh;
}

.hero-image{
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.hero-1{
    padding-right: 5vw;
    padding-bottom: 30px;
}

.hero-1 > p{
    margin-top: 3vh;
    font-size: 18px;
}

.hero-1 .action-btn{
    margin-top: 2vh;
    display: inline-block;
}

.footer{
    margin-top: 100px;
    padding: 80px 0 0 0;
    background-color: #345886;
    color: #f3f6f9;
}

.footer-logo{
   width: 40%;
   height: auto;
}

.footer-contact-col{
    padding-top: 40px;
}

.footer-contact-col > p{
    margin-bottom: 10px;
    color: #f3f6f9;
}

.footer .copy{
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #5a6f8b;
}



body.register-container{
    background-image: url("./images/register.jpg"); 
    background-repeat: no-repeat; 
    background-size: cover; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.register-btn,
.register-btn:link,
.register-btn:visited{
    text-align: center;
    width: 100%;
    cursor: pointer;
    display: block;
    padding: 13px 25px;
    color: #f3f6f9;
    background-color: #2e6cbd;
    transition: all 0.3s ease-out;
    font-size: 1.1em;
    border-radius: 5px;
    margin-top: 20px;
}
.register-btn:hover{
    color: #f3f6f9;
    background-color: #345886;
}
.register-btn:active{
    color: #f3f6f9;
    background-color: #2e6cbd;
}


.reg-input{
    padding: 15px;
    border: 1px solid #bbb;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

.reg-input:focus{
    border: 1px solid #bbb;
    outline: none;
    box-shadow: none;
}

.register-box{
    background-color: #f3f6f9;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 100px;
}

.register-box > h4{
    text-align: center;
    margin: 15px 0 25px 0;
}

.reg-logo{
    width: 20%;
    height: auto;
    margin: 7vh auto 4vh auto;
    display: inline-block;
}

@media only screen and (max-width: 768px){
    .reg-logo{
        width: 40%;
    }

    .reg-input{
        padding: 10px;
    }

    .register-box{
        padding: 20px 10px;
        margin: 20px 10px 100px 10px;
    }


    
    .menubar{
        height: 70px;
    }
    .menu-nav{
        padding: 20px 0 20px 0;
    }
    .logo{
        height: 25px;
    }


    .manu-items > li > a{
        display: inline-block;
        height: 30px;
        line-height: 30px;
        padding: 0px 12px;
    }

    .hero{
        margin-top: 7vh;
    }

}