/* Main Stylesheet */

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html,
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #f8f9fa;
    background-color: #0d111c;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.text-mute {
    color: #888;
}

/*
#contact-form {
    background-color: rgb(33 37 41 / 0.5);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    border-radius: 8px;
    padding: 10px 12px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

#contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

#contact-form button[type="submit"] {
    background-color: #ffc107;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease-in-out;
}

#contact-form button[type="submit"]:hover {
    background-color: #e0a800;
}
*/
.wizard-step {
    max-width: 600px;
    margin: auto;
}

.is-valid {
    border-color: #28a745 !important;
}
.is-invalid {
    border-color: #dc3545 !important;
}
.validation-error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}