body {
    font-family: Arial, sans-serif;
}

nav{
    position: fixed;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 5vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

nav img{
    width: 80px;
    cursor: pointer;
}

nav .navigation h2{
    margin-left: -100px;
}

nav .navigation ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav .navigation ul li{
    list-style: none;
    margin-left:100px;
}

#Homepage{
    background-image: linear-gradient(rgba(9, 5, 54, 0.3),rgba(5, 4, 46, 0.7)),url(school2.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row; 
    justify-content: space-around; 
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.content-container {
    margin-bottom: 20px; 
    margin-left: 150px;
}

#Homepage h1{
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
    width: 50%;
    line-height: 25px;
    margin-right: 20px;
}

#Homepage p{
    align-items: left;
    width: 50%;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
}


.container{
    margin-right: 130px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    width: 60%; 
}

.container .form-group input{
    margin: 11px 0;
    padding: 15px -10px;
    border: 1px solid rgba(84, 40, 241);
    outline: none;
    text-align: start;
}

label {
    display: block;
    font-weight: bold;
}
input[type="text"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="checkbox"] {
    margin-right: 5px;
}


