/* CSS of login page start from here */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #a499f6;

}

#home {
align-items: center;
text-align: center;
font-size: 50px;
padding-top: 20px;
/* padding-bottom: 20px; */
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.form-container {
    width: 100%;
    display: flex;
    padding: 50px 20px;
    justify-items: center;
}

form {
    display: block;
    margin: auto;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 35px;
}

form h3 {
    font-size: 25px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 10px black;
}

label {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
}

input {
    outline: none;
    border: none;
    width: 100%;
    background-color: #f4f3f367;
    border-radius: 4px;
    padding: 15px 10px;
    margin-top: 8px;
    font-weight: 100;
}

input::placeholder {
    color: rgb(87, 79, 79);
}

.pass {
    position: relative;
}

.pass i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    right: 20px;
}

#show-hide {
    font-size: 1rem;
}

button {
    margin-top: 30px;
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.1s;
}

button:hover {
    transform: translate(-0.25rem, -0.25rem);
    box-shadow: 0.25rem 0.25rem #2a2a2c;
}


@media screen and (max-width: 462px) {
    form {
        width: 100%;
    }
}

/* CSS of login page ends here */

/* CSS of home page start from here */

.container {
    width: 100%;
    height: 100%;
    display: grid;
}


#current-date {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: Istok Web;
}

#current-time {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: Istok Web;
}


.time {
    width: 300px;
    height: 130px;
    color: #ffffff;
    background-color: #4C4A4A;
    ;
    font-size: x-large;
    grid-column-start: 1;
    grid-row-start: 1;
}

.menu {
    width: 300px;
    height: 618px;
    flex-shrink: 0;
    /* opacity: 0.5; */
    background: #D9D9D9;
    margin: 0px;
    grid-column-start: 1;
    grid-row-start: 2;
}

.main_content {
    width: 164.8vh;
    height: 100vh;
    flex-shrink: 0;
    /* opacity: 0.5; */
    /* background: #a41414; */
    grid-column-start: 2;
    grid-row-end: span 2;
}


#options{
    padding-top: 120px;
}

#options ul li{
    padding-left: 5px;
}

#icons {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    
}

hr{
    width: 300px;
    height: 1.5px;
}

li{
    
    list-style: none;
    /* padding-left: 50px; */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: sans-serif;
}

a{
    text-decoration: none;
    text-align: center;
    color: black;
}

#help{
    padding-top: 125px;
    text-align: center;
}

#since{
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 30px;
}

.home_info{
    color: #000;
text-align: center;
font-family: Istok Web;
font-size: 37px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

#project_info{
    display: flex;
    justify-content: center;
    padding-top: 220px;
    text-decoration: underline;
}

/* end of login page */

