@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Oswald&family=Poppins:wght@300;600&family=Roboto+Slab&family=Roboto:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;

}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to left, rgba(1, 11, 75, 0.4), rgba(5, 1, 66, 0.2)), url('/Group17/Images/NormalBg.jpeg');
    background-size: cover;
    background-color: #f9f9f9;
    font-family: 'Poppins';
}
.logo img {
    margin: 0;
    padding: 0;
    align-items: center;
    width: 50px;
    height: 50px;
}

nav {
    padding: 30px;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
}

.menu a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid darkblue;
    transition: 0.4s linear;
}

.menu a:hover:before {
    width: 90%;
}

.contact-us {
    background-color: darkblue;
    color: white;
}

.Register a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background: darkblue;
    border-radius: 10px;
}

.Register a:hover {
    color: darkblue;
    background: white;
    transition: 0.4s linear;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: lightblue;
    background: linear-gradient(to right, lightblue, rgba(14, 11, 113, 0.8));
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

h1 {
    text-align: center;
}

h1:hover {
    color: white;
}

.form-group {
    margin-bottom: 20px;

}

label {
    display: block;
    margin-bottom: 5px;
    border-color: darkblue;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-color: darkblue;
}

button {
    background-color: darkblue;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
    font-weight: bold;
}

button:hover {
    background-color: rgb(38, 65, 173);
}

footer {
    background: darkblue;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}