/* Általános stílusok */
body {

    font-family: Arial, sans-serif;
    background-color: #121212; /* Sötét téma */
    color: #e0e0e0; /* Lágy fehér szöveg */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(90deg, #001f33, #003366); /* Mély sötétkék átmenet */
    color: #f0f0f0;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    margin-top: 0%;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

/* Main */
main {
    background: #1e1e1e; /* Sötétszürke tartalom */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

form h2 {
    margin: 0 0 15px;
    color: #80dfff; /* Kiemelt szín */
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 0.9em;
}

input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    background: #2e2e2e;
    color: #e0e0e0;
    font-size: 1em;
}

button {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

a {
    color: #80dfff;
    text-decoration: none;
    font-size: 0.9em;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #001f33; /* Mély sötétkék */
    color: #e0e0e0;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.5);
}

footer p {
    margin: 0;
    font-size: 0.8em;
}
