.form {
    text-align: center;
}
.form-control {
    background-color: transparent !important;
    border: 1px solid var(--bs-warning) !important;
    color: white !important;
}

.form-control:focus {
    background-color: transparent !important;
    border-color: var(--bs-warning) !important;
    color: white !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-control::placeholder {
    color: white !important;
    opacity: 1;
}
.form-container {
    background: linear-gradient(180deg, #1ec8b4, #16b9a6);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 2rem auto;
}