/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff9f9; /* Dark theme */
    color: #f5f5f5;
    padding-top: 130px;
    text-align: center;
}

header {
    background-color: #007bff;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

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


.container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto 50px auto;
    background: #092bd6;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
    border-radius: 15px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

label {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #1a1a1a;
    color: white;
    box-shadow: inset 0 2px 5px rgba(0, 123, 255, 0.3);
}

textarea {
    resize: none;
}

/* Button Styling */
button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #012246, #000f20);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
}

button:hover {
    background: linear-gradient(135deg, #012349, #1f3347);
    transform: translateY(-3px);
}

button:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #007bff;
    color: white;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #003f7f;
}
