@import '/data/lib/style/home.css';




@import '/data/lib/style/contact.css';


/* Font import */
@font-face {
    font-family: Designer;
    src: url("/data/lib/fonts/Designer.otf");
}
@font-face {
    font-family: Nexa;
    src: url("/data/lib/fonts/Nexa-ExtraLight.ttf");
}
@font-face {
    font-family: Nexa-Bold;
    src: url("/data/lib/fonts/Nexa-Heavy.ttf");
}


html{
    font-family: Nexa;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgb(80, 105, 128);
}

a {
    text-decoration: none;
}


/*  -- Top navigation bar --  */
#main-header{
    height: 100px;
    background-color: rgb(178, 199, 219);
    padding: 5px 5px;
    border-radius: 5px;
    position: relative;
}
#logos{
    border-radius: 5px;
}

/* - Navigation Menu - */
.header-alignment{
    display: inline-block;
    vertical-align: middle;
}

#top-menu{
    width: 0 auto;
    height: auto;
    margin-left: 10px;
    position: relative;

}
.main-nav-menu-buttons{
    width: auto;
    padding: 10px;
    font-weight: bolder;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    color: black;
    position: relative;
}

.main-nav-menu-buttons:hover{
    background-color: rgb(109, 166, 219);
    cursor: pointer;
}


/* - User area - */
#user-area-carrier{
    width: auto;
    min-width: 300px;
    height: 100%;
    right: 1%;
    top: 0;
    position: absolute;
}
#userlogregtoggle-carrier{
    height: 30px;
    width: 100%;
    bottom: 0;
    margin-top: 3px;
    position: relative;
}
.user-access-toggles{
    height: 100%;
    width: 49.5%;
    border-radius: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.user-access-toggles:hover{
    cursor: pointer;
}
.user-access-toggles.active {
    background-color: white;
    font-weight: bolder;
}

#user-login-wrapper{

}
.signin-inputs{
    display: inline-block;
    vertical-align: middle;
}
.signup-inputs{
    display: inline-block;
    vertical-align: middle;
}
.submit{
    width: 100%;
    background-color: darkblue;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}

#user-join-wrapper{
    display: none;
}


/* -- Login / Logged in / Logout -- */
#signup-form{
    width: 30%;
    background-color: orange;
    
}

.signup-location{
    position: fixed;
    left: 0%;
    top: 70%; 
    background-color: darkblue;
    padding: 10px 10px;  
    width:100%;
    border-radius: 5px;
}
.login-location{
    position: fixed;
    left: 12%;
    top: 70%;
    background-color: darkblue;
    width: 100%;
    padding: 10px 10px;
}

#signup-form{
    background-color:black;
    color:white;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    width: 210px;
}
#submit{

    background-color: darkblue;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    width: 218px;
}

.form-text{
   position:fixed;
   left: 40%;
    text-align: center;
    color: white;
    font-size: 20px;

}


#logout{
    text-decoration: none;
    position: fixed;
    left: 90%;
    top: 6%;
    font-size: 20px;
    color: black;
}
#logout:hover{
    color: darkblue;
}