/* Reset default margin & padding */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Header Navigation */
header {
    background-color: #333;
    color: white;
    padding: 15px 20px;
}

nav {
    display: flex;
    justify-content: space-between; /* Pushes logo left and buttons right */
    align-items: center;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Button Container */
.nav-right {
    display: flex;
    gap: 15px; /* Adds space between buttons */
}

/* Buttons */
.nav-right .btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-right .btn:hover {
    background-color: white;
    color: #333;
}

/* Primary button (Sign Up) */
.nav-right .btn-primary {
    background-color: #ff9800;
    border-color: #ff9800;
}

.nav-right .btn-primary:hover {
    background-color: white;
    color: #ff9800;
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}




