* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background: #000000;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #555;
    border-radius: 5px;
}

.buttons {
    display: flex;
}

.buttons .btn-login,
.buttons .btn-signup {
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

.buttons .btn-login:hover,
.buttons .btn-signup:hover {
    background: #777;
}

.cover {
    position: relative;
    text-align: center;
    color: white;
}

.cover img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cover-text h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.cover-text p {
    font-size: 1.5em;
}

.buttons .btn-login,
.buttons .btn-signup {
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

.buttons .btn-login:hover,
.buttons .btn-signup:hover {
    background: #777;
}

.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #f4f4f4;
    padding: 20px;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

.btn-submit:hover {
    background: #555;
}