@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    display: flex;
    width: calc(100% * 2); /* This should be twice the width of the container for a seamless loop */
    animation: scroll 20s linear infinite;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.form-container {
    max-width: 600px;
    margin: auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.form-header img {
    max-width: 100px;
}
.form-header h1 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group button {
    background-color: #4f46e5;
    color: #ffffff;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}
.form-group button:hover {
    background-color: #4338ca;
}
