/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: black;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Header Styling */
header {
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Navigation Styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

nav ul li {
    transition: transform 0.3s;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #555;
}

/* Main Content Styling */
main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e09;
    border-bottom: 2px solid #e09;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

label {
    font-size: 1.2rem;
    color: #666;
}

input[type="text"],
input[type="password"],
textarea,
select {
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid #e09;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #d0e;
    box-shadow: 0 0 8px rgba(208, 0, 238, 0.3);
}

button {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    background-color: #e09;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #d0e;
    transform: scale(1.05);
}

h3 {
    margin-top: 2rem;
    font-size: 1.8rem;
    color: #d0e;
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    nav ul li a {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    form {
        gap: 0.5rem;
    }

    input[type="text"],
    input[type="password"],
    textarea,
    select {
        font-size: 0.9rem;
    }

    button {
        font-size: 1rem;
    }
}
