/* Container voor het formulier */
.weather-contact-container {
    max-width: 500px;
    margin: 40px 0;
    font-family: inherit; /* Neemt het lettertype van je dashboard over */
    color: #ffffff;
}

/* Koppen en teksten */
.weather-contact-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.weather-contact-container p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Formulier opbouw */
.weather-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Labels boven de invoervelden */
.weather-form label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

/* Invoervelden styling */
.weather-form input[type="text"],
.weather-form input[type="email"],
.weather-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05); /* Subtiel transparant */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Lichte subtiele rand */
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Placeholder tekst kleur (zoals 'Jouw naam') */
.weather-form ::placeholder {
    color: #888888;
    opacity: 1;
}

/* Focus effect wanneer je in een veld typt */
.weather-form input:focus,
.weather-form textarea:focus {
    outline: none;
    border-color: #38bdf8; /* Lichtblauwe focusrand passend bij het LIVE-icoon */
    background-color: rgba(255, 255, 255, 0.1);
}

/* Verzendknop */
.weather-form .btn-submit {
    background-color: #ffffff;
    color: #0d1b2a; /* Donkere tekstkleur voor contrast */
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
    margin-top: 10px;
}

/* Hover effect voor de knop */
.weather-form .btn-submit:hover {
    background-color: #e2e8f0;
}
