body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
}
.container {
    max-width: 600px;
    margin-top: 50px;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
label {
    font-weight: bold;
}
.form-control {
    background-color: #2a2a2a !important;
    color: white !important;
    border: 1px solid #444;
}
.form-control:focus {
    background-color: #333 !important;
    color: white !important;
    border: 1px solid #00bcd4;
}
.btn-primary {
    background-color: #00bcd4;
    border: none;
}
.btn-primary:hover {
    background-color: #008c9e;
}
.progress-bar {
    width: 0%; 
    background-color: #00bcd4; 
    height: 10px;
    transition: width 0.4s ease;

}

.progress {
    width: 100%;
    background-color: #444;
    height: 10px;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.error-message {
    color: red;
    font-size: 0.9em;
}
/* Automatikus kitöltés (autocomplete) esetén is maradjon sötét háttér és világos szöveg */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: white !important;
    color: white !important;
    background-color: #2a2a2a !important;
    transition: background-color 5000s ease-in-out 0s;
}

.g-recaptcha {
    margin-bottom: 15px;
}
