/* CSS Reset */
body{
    margin: 0px;
    padding: 0px;
    font-family: "Graphik Web", Helvetica, sans-serif;
    font-weight: lighter;
    background: #f9f9fa;
}

/* Header Section */
header{
    /* background-color: #111324; */
    width: 100%;
    height: 72px;
    /* position: sticky; */
    /* top: 0%; */
    /* z-index: 100; */
    display: grid;
    justify-content: space-around;
}

/* Navigation Bar */
#nav-bar{
    /* border: 2px solid red; */
    height: 100%;
    /* width: 68.5%; */
    width: 1000px;
    /* position: relative;
    left: 15.75%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo inside the Navigation Bar */
.cmlogo{
    /* width: 100%; */
    /* border: 2px solid red; */
    transition: 0.2s ease-in-out;
}

/* Navigation Menu */
#nav-menu{
    /* float: right; */
    height: 100%;
    font-weight: lighter;
    width: 82.5%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    /* border: 2px solid red; */
}

#primary{
    /* border: 2px solid red; */
    text-transform: uppercase;
    display: flex;
}

#secondary{

    float: right;
    width: 28.9%;
    display: flex;
    /* justify-content: space-between; */
    /* border: 2px solid red; */
}

#nav-menu a:not(.btn){
    /* border: 2px solid red; */
    letter-spacing: .05em;
    font-size: 0.66em;
    text-decoration: none;
    color: black;
    opacity: .5;
    text-align: center;
    padding: 7.5% 3.1%;
    transition: 0.2s ease-in-out;
}

#nav-menu #secondary a:not(.btn){
    padding: 11.5% 4.905%;
    /* padding-right: 2%; */
    /* padding-bottom: 0%; */
    opacity: .35;
    font-size: 0.71em;
    letter-spacing: .03em;
}

header #nav-menu #secondary .btn{
    height: 14.5%;
    width: 58px;
    /* float: right; */
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    padding: 4.8% 7.2%;
    padding-right: 5%;
    margin: 6.9% 0% 0% 5%;
    /* margin-bottom: 0%; */
    border-radius: 4px;
    background: transparent;
    color: black;
    opacity: .35;
    transition: 0.2s;
    border: 1px solid rgba(0,0,0,.7);
}

/* Hover Effects */
#nav-bar #nav-menu a:not(.btn):hover{
    opacity: 1;
}

header #nav-menu #secondary .btn:hover{
    background: #6ad6e0;
}



/* Form Section*/

.container > p{
    
    color: #18527c;
    font-size: 40px;
    font-weight: 400;
    font-family: Lato,Helvetica Neue,Helvetica,Arial,sans-serif;
    
    width: 112px;

    margin: 33px auto;
    margin-top: 130px;
}

.container{
    display: grid;
    justify-content: center;
}

form{
    border-radius: 3px;
    box-shadow: 0px 0px 3px 0px rgb(189, 189, 189);
    background-color: white;
    height: 481px;
    width: 428px;
    margin: auto;
    
    box-sizing: border-box;
    padding: 32.3px 30.5px;
    padding-right: 35px;
    transition: 0.2s ease-in-out;
}

form label{
    display: block;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 3px;
}

form input:focus-visible{
    outline: none;
}

form input{    
    box-shadow: inset 0 2px 1px 0 #e0e5e9;
    border: 1px solid #8e959c94;
    border-radius: 3px;
    height: 43px;
    width: 101.55%;
    transition: all 0s cubic-bezier(.55,.055,.675,.19);
    margin-top: 5px;
    margin-bottom: 19px;
    padding-left: 10px;
    box-sizing: border-box;
    transition: 0.15s ease-in-out;
}

form input:focus{
    border-color: #79d6ff;
    box-shadow: inset 0 1px 1px transparent, 0 0 2px 0 #26a6df;
}

form .field{
    margin-top: 11px;
}

form button{
    border: none;
    border-radius: 3px;
    margin-top: 21px;
    margin-bottom: 34.5px;
    height: 64px;
    width: 101.6%;
    cursor: pointer;
    background-color: #80bb35;
    color: white;
    font-size: 17px;
    font-weight: lighter;
    transition: 0.2s ease-in-out;
}

button:hover{
    background-color: #72a72f;
}

button:active {
    box-shadow: inset 0 3px 7px 1px #5d8924;
}

form a{
    color: #8e9aad;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all .1s cubic-bezier(.55,.055,.675,.19);
    font-size: 14px;
    margin-left: 83px;
    transition: 0.2s ease-in-out;
}

form a:focus,form a:hover {
    color: #26a6df;
    text-decoration: underline;
}

.signup{
    position: relative;
    top: 45px;
    /* left: 38.75%; */
    border-radius: 3px;
    text-decoration: none;
    display: block;
    width: 430px;
    height: 116px;
    border: .5px solid rgb(189, 189, 189,.4);
    box-shadow: 0px 2px 1px  0px #e0e5e9;
    box-sizing: border-box;
    padding: 22px 72px;
    text-align: center;
    transition: 0.2s ease-in-out;
    margin-bottom: 109px;
}

.signup h3{
    font-size: 17.5px;
    letter-spacing: .25px;
    font-weight: lighter;
    color: #26a6df;
    margin: 0%;
    margin-bottom: 7px;
}

.signup p{
    line-height: 21px;
    font-size: 14px;
    margin: 0px;
    color: #8e9aad;
}

.signup:hover{
    background: white;
    box-shadow: 0px 0px 1px 0px #e0e5e9;
}
