.error-message {
    color: #ff4d4d; /* Kırmızı ama biraz daha soft */
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    padding: 5px 10px;
    background: rgba(255, 77, 77, 0.1); /* Hafif kırmızı bir arka plan */
    border-left: 3px solid #ff4d4d; /* Sol kenarda ince kırmızı bir çizgi */
    display: inline-block;
    border-radius: 5px;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    background-color: rgba(255, 77, 77, 0.1);
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #333;
    color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-menu a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background-color: #444;
}