/* Reset some default browser styles */
body, h1, h2, p, ul, li, form, button {
    margin: 0;
    padding: 0;
}

/* Define global styles */
body {
    font-family: Arial, sans-serif;
    background: url('./background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

header {
    background: rgba(0, 123, 255, 1);
    padding: 10px 0;
}

nav {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

ul {
    list-style: none;
    display: flex;
}

li {
    margin-left: 20px;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

section.hero {
    position: relative;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 0;
    padding-top: 70px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Let it grow to fill the available space */
}

.hero-content {
    max-width: 600px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

input[type="username"],
input[type="password"]{
    width: 90%;
    padding: 10px 10px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background: #0056b3;
}

footer {
    background: rgba(0, 123, 255, 0.7);
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Media Queries for Responsive Design */

/* For screens smaller than 768px (mobile) */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .hero-content {
        max-width: 70%;
		margin-left: auto;
		margin-right: auto;
    }
}
