* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    color: #fff; /* Set text color to white for better contrast */
}


header{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

header .container {
    display: flex;
    justify-content: space-between;
}

header .container .logo {
    padding: 15px 0;
    height: 75px;
}

header .container .logo img {
    height: 100%;
}

header nav ul {
    List-style-type: none;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    display: inline-block;
    height: 75px;
    Line-height: 75px;
    padding: 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: aliceblue;
    transition: 0.5s;
}

header nav ul li a:hover {
    background-color: red;
}


.signup-container {
    margin-top: 200px;
    max-width: 1000px;
    margin: 100px auto;
    padding:20px;
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background color to the signup container for better readability */
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: red; 
    font-size: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form styles */
form {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
    font-size: larger;
}

label:hover {
    color: red;
    cursor: pointer;
    transition: 0.5s;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    color: brown;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover {
    border-color: red solid;
    box-sizing: 30px;
    box-shadow: 0 0 5px rgba(255, 51, 0, 0.893);

}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: greenyellow;
}

button[type="submit"] {
    background-color: black;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: red;
}

/* Link styles */
p {
    text-align: center;
    margin-top: 15px;
    color: white;
}

p a {
    color: red;
    text-decoration: none;
    margin-bottom: 100px;
}

p a:hover {
    text-decoration: underline;
}
