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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a3d, #2e2e6a);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

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

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

header .buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.login-btn {
    background-color: #4476f6;
}

.register-btn {
    background-color: #42b983;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 5%;
    max-width: 600px;
    margin: 5% auto;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #dcdcdc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    text-align: left;
    font-size: 1rem;
    color: #dcdcdc;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b5b5b5;
}

.submit-btn {
    padding: 12px;
    background-color: #735ee3;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #5a49bd;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

footer nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, footer {
        flex-direction: column;
        text-align: center;
    }

    .contact-section {
        padding: 30px 5%;
    }
}
