
/* NAVBAR AREA */

.navbar {
    position: fixed;
    display: flex;
    align-items: center;            /* Align items vertically center */
    justify-content: space-between; /* Distribute items evenly */
    
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;                /* CHANGE */

    background-color: rgb(0,0,0,10);
    bborder-bottom: 0.5px solid rgb(50,50,50);

    z-index: 3;
}

.logo {
    display: flex;              /* center img in div: verictally and horizontally */
    justify-content: center;    /* center img in div: verictally and horizontally */
    align-items: center;        /* center img in div: verictally and horizontally */
    margin-left: 45px;          /* CHANGE */

    width: 160px;               /* CHANGE */
    height: auto;
}



/* HOME CONTENT AREA */


body {
    pposition: fixed;

    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}



.container {
    width: 100%;
    height: 100vh; /* full screen height */
    background-color: black;

    width: 100%;
    height: calc(100vh - 75px);     /* change based on navbar height */
    padding-top: 75px;              /* change based on navbar height */
    
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */

    border-bottom: 0.5px solid rgb(100,100,100);
  }

  .content-container1 {
    display: flex;              /* center img in div: verictally and horizontally */
    align-items: center;        /* center img in div: verictally and horizontally */
    flex-direction: column;     /* items under each other */

    margin: auto;
    margin-top: 50px;
    
    width: 95%;
    height: calc(75%);
    bborder: 1px solid rgb(100,100,100);
  }



  /* SIGN IN FIELD */

  .signin-container {
    text-align: center;

    width: 100%;
    max-width: 440px;

    background-color: black;
    padding-top: 25px;
    padding-bottom: 10px;
    bborder: 1px solid rgb(40,40,40);
    border-radius: 15px;
}

.signin-container h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 5%;

    font-family: soehne;
    font-size: 30px;
    font-weight: 500;
    color: white;
    text-align: left;
}

.signin-container form {
    display: flex;
    flex-direction: column;
}


.signin-container input {
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 14px 9px;
    
    background-color: rgb(20,20,20);
    color: rgb(220,220,220);
    border: 1px solid rgb(50,50,50);
    border-bottom: 2px solid rgb(60,130,250);;
    border-radius: 5px;

    font-family: soehne;
    font-size: 12px;
}

.signin-container input::placeholder {
    color: rgb(80,80,80);
}

.signin-container input:focus {
   border-top: 1px solid rgb(200,200,200);
   border-left: 1px solid rgb(200,200,200);
   border-right: 1px solid rgb(200,200,200);
   outline: none;                                  /* remove highlighting in browsers */
}

.signin-container button {
    margin-top: 18px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 14px 9px;
    
    border: none;
    border-radius: 5px;
    background-color: rgb(25,25,25);
    color: rgb(220,220,220);
    cursor: pointer;
    font-family: soehne;
    font-size: 12px;
}

.signin-container button:hover {
    background-color: rgb(20,20,20);
    color: rgb(150,150,150);
}


.forgot-password {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: soehne;
    font-size: 10px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.forgot-password a {
    color: rgb(60,130,250);
    outline: none;
    text-decoration: none;
    display: inline-flex; /* Align items within the link */
    align-items: center; /* Center the items vertically */
}

.forgot-password img {
    margin-left: 5px;

    width: 11px;
}

.create-account {
    margin-top: 50px;

    font-family: soehne;
    font-size: 12px;
    font-weight: 500;
    color: rgb(220,220,220);
    text-align: center;
}

.create-account a {
    color: rgb(240,240,240);
    outline: none;
    text-decoration: underline;
}





/* MOBILE VIEW ... 500px */

@media only screen and (max-width: 999px) {
    
    .navbar {
        height: 45px;
    }

    .logo {
        margin-left: 16px;

        height: 28px;
        width: auto;
    }



    .container {
        height: calc(100vh - 55px);     /* change based on navbar height */
        padding-top: 55px;              /* change based on navbar height */
    }

    .container2 { 
        height: calc(100vh - 55px);
    }
		
		
		
	.signin-container {
        max-width: 375px;
    }

    .signin-container h2 {
        font-size: 28px;
    }

    .signin-container input {
        padding: 13px 8px;

        font-size: 12px;
    }

    .signin-container button {
        padding: 13px 8px;

        font-size: 12px;
    }

    .create-account {
        font-size: 11px;
    }




    .footer {
        height: 50px;
    }
    
    .footer div {
        margin-right: 10%;
        margin-left: 10%;
        font-size: 10px;
    }
    
    .footer .copyright {        /* footer before need, otherwise overwritten by footer div */
        margin: 0px;
    }



}   

    

/* TABLET VIEW */

@media only screen and (min-width: 1000px) and (max-width: 1299px) {

    .navbar {
        height: 65px;
    }

    .logo {
        margin-left: 20px;
        width: 110px;
    }

    


    .container {
        height: calc(100vh - 65px);     /* change based on navbar height */
        padding-top: 65px;              /* change based on navbar height */
    }

    .container2 { 
        height: calc(100vh - 65px);
    }


    .signin-container {
        max-width: 375px;
    }

    .signin-container h2 {
        font-size: 24px;
    }

    .signin-container input {
        padding: 12px 8px;

        font-size: 11px;
    }

    .signin-container button {
        padding: 12px 8px;

        font-size: 11px;
    }

    .create-account {
        font-size: 10px;
    }



    .footer {
        height: 50px;
    }
    
    .footer div {
        margin-right: 10%;
        margin-left: 10%;
        font-size: 10px;
    }
    
    .footer .copyright {        /* footer before need, otherwise overwritten by footer div */
        margin: 0px;
    }


}    



/* PC VIEW */

@media only screen and (min-width: 1300px) {


}    