﻿body {
    font-family: 'Noto Sans', sans-serif;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

nav {
    margin: auto;
    background: #004242;
    padding: 5px 20px;
    z-index: 999;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    padding: 0;
    margin: 0;
    color: white;
    text-decoration: none;
}

a:hover {
    color: #d4f9f9;
}

.menu li {
    font-size: 16px;
    padding: 10px 5px;
}

.menu li a {
    display:block;
 }

.logo a {
    font-size: 22px;
    font-family: 'Times New Roman';
    text-decoration: none;
    color: white;
    width:285px;
}

.buttonN {
    border-bottom: 1px #d4f9f9 solid;
}
.login-box {
    width: 360px;
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    overflow:auto;
}
.login-box h1 {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 24px;
    color: black;
    font-weight: 700;
}
.login-box p {
    margin-bottom:20px;
    padding:10px;
    font-size: 16px;
    color: black;
}

.login-btn {
    display: inline-block;
    width: 80%;
    text-decoration: none;
    color: #fff;
    border: 1px solid #99004d;
    background: #cc0066;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.login-btn:hover {
        text-decoration: none;
        border: 1px solid #99004d;
        background: #99004d;
        color: white;

}







/* Mobile Menu*/
.menu {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
}

.toggle {
    order: 1;
}

.item {
    width: 100%;
    text-align:center;
    order: 3;
    display: none;
    font-weight:600;
}

.item.buttonN {
    order: 2;
}

.item.active {
    display: block;
}

.toggle {
    cursor: pointer;
}

.bars {
    background: white;
    display: inline-block;
    height: 2px;
    position: relative;
    width: 18px;
}
.bars::before, .bars::after {
        background: white;
        content: "";
        display: inline-block;
        height: 2px;
        position: absolute;
        width: 18px;
}

    .bars::before {
        top: 5px;
    }

    .bars::after {
        top: -5px;
    }





/* Tablet Menu */
@media all and (min-width:600px) {
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }

    .item.buttonN {
        width: auto;
        order: 1;
        display: block;
    }

    .toggle {
        order: 2;
    }

    .buttonN {
        border: 0;
    }

    .buttonN a {
            margin-right: 20px;
            text-decoration: none;
            padding: 5px 10px;
            background: #004242;
            border-radius:25px;
            border: 2px solid #d4f9f9;
            color: #d4f9f9;
    }

        .buttonN.secondary a {
            background: transparent;
        }

        .buttonN a:hover {
          
        }

        .buttonN:not(.secondary) a:hover {
            background: #d4f9f9;
            border-color: #d4f9f9;
            color: #004242;
        }

        .buttonN.secondary a:hover {
            color: black;
            background: white;
        }

}


/* Desktop Media*/
@media all and (min-width:900px) {
    .item {
        display: block;
        width: auto;
    }

    .toggle {
        display: none;
    }

    .logo {
        order: 0;
    }

    .item {
        order: 1;
    }

    .buttonN {
        order: 2;
    }

    .menu li {
        padding: 10px 25px;
    }

        .menu li.buttonN {
            padding-right: 0;
        }

    .login-box h1 {
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 26px;
        color: black;
        font-weight: 700;
    }

    .login-box p {
        margin-bottom: 20px;
        padding: 10px;
        font-size: 18px;
        color: black;
    }
}


.header {
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #005c5c 60%, #004242);
    background-position: center;
    background-size: cover;
    position: relative;
}