body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: #f4f4f9;
}

.contact-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 40px;
}

h2 {
    /*
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Ezt adtuk hozzá, hogy legyen távolság a mezők között */
}

label {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

input, textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Az inputok és textarea teljes szélességben */
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

textarea {
    resize: vertical; /* A szövegmezőt függőlegesen lehet változtatni */
    min-height: 120px; /* A textarea minimális magassága */
}

button {
    padding: 12px;
    /* background-color: #4CAF50; */
    /* background-color: #0d6efd; */
    background-color: #676f74;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    /* background-color: #45a049; */
    background-color: #0d6efd;
}

p {
    color: #676f74 !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

#formMessage {
    text-align: center;
    font-weight: bold;
    color: green;
}

.login-link {
    color: #676f74 !important;
    margin-top: 10px;
}

.menu-color {
    --bs-nav-pills-link-active-color: #676f74 !important;
    color: #676f74 !important;
}

.menu-color-active {
    --bs-nav-pills-link-active-color: #ffffff !important;
    --bs-nav-pills-link-active-bg: #676f74;
    color: #ffffff !important;
}

.welcome-text {
    color: #676f74 !important;
    margin-top: 30px !important;
    
}

.footer-text  {
    color: #676f74 !important;
}