@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}
body
{
    min-height: 100vh;
    min-width: 400px;
    overflow: auto;
}
header
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    color: #003366;
    font-size: 18px;
}
header .logo
{
    color: #003366;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: auto;
}
header nav
{
    display: flex;
    align-items: center;
}
header nav .menu
{
    display: flex;
    align-items: center;
}
header nav .menu li a
{
    position: relative;
    color: #003366;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 40px;
    border-radius: 0.4rem;
    transition: color 0.4s ease;
}
header nav .menu li a:hover
{
    color: #fff;
}
header nav #toggle
{
    font-size: 1.3rem;
    margin-left: 80px;
    cursor: pointer;
}
.home
{
    padding: 0 5%;
    color: #003366;
    text-align: center;
}
.home h1
{
    color: #003366;
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 10px;
}
.home h2
{
    color: #003366;
    font-size:  1.8rem;
    font-weight: 300;
    margin-bottom: -25px;
}

.home .images .img-1,
.home .images .img-p,
.home .images .img-i,
.home .images .img-q,
.home .images .img-u,
.home .images .img-e,
.home .images .img-7,
.home .images .img-w
{
    width: 100%;
    height: 100vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -10;
}
.home .images .img-1
{
    background: url(images/163.1.png);
    background-position: center;
    background-size: cover;
}
.home .images .img-p
{
    background: url(images/163.p.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-i
{
    background: url(images/163.i.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-q
{
    background: url(images/163.q.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-u
{
    background: url(images/163.u.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-e
{
    background: url(images/163.e.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-7
{
    background: url(images/163.7.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.home .images .img-w
{
    background: url(images/163.w.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (max-width:800px)
{
    .home
    {
        min-width: 390px;
    }
    .home h1 
    {
        margin-top: 5px;
        font-size: 4rem;
        font-weight: 700;
    }
    .home h2 
    {
        margin-top: 10px;
    }
}
header nav .menu 
{
    flex-direction: column;
    row-gap: 2rem;
    position: absolute;
    left: -100%;
    top: 80px;
    width: 100%;
    padding-top: 110px;
    background: #003366;
    height: calc(100vh - 80px);
    z-index: 10;
    transition: left .4s ease;
}
header nav .menu.active 
{
    left: 0;
}
header nav .menu li a 
{
    margin-left: unset;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00cccc;
    width: 250px;
    height: 60px;
    line-height: 60px;
    display: block;
    text-align: center;
    border-radius: 5px;
    transition: 0.25s ease;
}
header nav .menu li a:hover 
{
    background: #00cccc;
    color: #003366;

} 

.required {
    color: red;
    font-size: 1.2em;
    margin-left: 3px;
}

.password-info {
    font-size: 0.8em;
    color: #777;
    margin-top: -5px;
    margin-bottom: 10px;
}

body.login-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

.login-container, .register-container {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px; /* Add some space between the two containers */
}

.login-container {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
}

input {
    padding: 8px;
    margin-bottom: 5px;
}

input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    cursor: pointer;
}

