*,
html,
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    
}

.fContainer {
    display: block;
    min-height: 100vh;
    background-color: #313131;
    background: url("/assets/bg.jpg") no-repeat center center fixed;
}
/* Nabar  */

.wrapper {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 15px;
    width: 98%;
    height: 60px;
    background-color: #313131;
    opacity: 0.9;
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.5);
}

.brand {
    display: flex;
    flex-direction: row;
    font-size: 1.5em;
    padding: 15px;
}

.firstname {
    color: aliceblue;
    font-weight: 700;

}

.lastname {
    color: rgb(0, 113, 206);
    font-weight: 700;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation>li {
    list-style-type: none;
    padding: 15px;
}

.navigation>li>a {
    color: aliceblue;
    font-size: 20px;
    text-decoration: none; 
}

.navigation>li>a:hover{
    color:rgb(0, 113, 206);
    transition: all .3s ease-in-out;
}

.active {
    background-color: rgb(0, 113, 206);
    color: aliceblue;
    padding: 15px;
}

.active:hover {
    color: aliceblue !important;
}

/* Login */

.center {
    position: relative;
    max-width: 400px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 50px;
}

.center h1 {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid silver;
}

.center form {
    box-sizing: border-box;
}

form .txt_field {
    position: relative;
    margin: 50px 0;
}

.txt_field input {
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: 1px solid #adadad;
    border-radius: 5px;
    background: none;
    outline: none;
}

.txt_field label {
    position: absolute;
    top: -12px;
    left: 5px;
    color: #adadad;
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.txt_field input:focus~label,
.txt_field input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #2691d9;
}

.pass {
    margin: -5px 0 20px 5px;
    color: #a6a6a6;
    cursor: pointer;
}

.pass:hover {
    text-decoration: underline;
}

input[type="submit"] {
    width: 100%;
    height: 50px;
    border: none;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background: #1b6ca8;
    transition: .5s;
}

.signup_link {
    margin: 10px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.signup_link a {
    color: #2691d9;
    text-decoration: none;
}

.signup_link a:hover {
    text-decoration: underline;
}


/* footer */
footer {
    background-color: #111;
    margin: 40px 0 0 0;
}

.footerContainer {
    width: 100%;
    height: 15%;
    padding: 10px;
    
}

.socialIcons {
    display: flex;
    justify-content: center;
}

.socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: aliceblue;
    margin: 20px;
    border-radius: 50%;
}

.socialIcons a i {
    font-size: 1.5em;
    color: black;
    opacity: 0.9;
}

.socialIcons a:hover {
    background-color: #111;
    transition: 0.5s;
}

.socialIcons a:hover i {
    color: white;
    transition: 0.5s;
}

.footerNav {
    margin: 10px 0;
}

.footerNav ul {
    display: flex;
    justify-content: center;
}

.footerNav ul li a {
    color: white;
    margin: 40px;
    text-decoration: none;
    font-size: 1.2em;
    opacity: 0.7;
    transition: 0.5s;
}

.footerNav ul li a:hover {
    opacity: 1;
}

.footerBottom {
    padding: 20px;
    text-align: center;
}

.footerBottom p {
    color: rgb(220, 220, 220);
}


@media (max-width: 700px) {
    .footerNav ul {
        flex-direction: column;
    }
    .footerNav ul li {
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}