/* Date Input Styles */
.date-input-label {
    margin-bottom: 0.5rem;
}
.date-input-mobile-wrapper {
    display: none !important;
}

.date-input-desktop {
    display: block !important;
}

.date-fields {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #F5F5F5;
    border-radius: 78.49px;
    border: 2px solid transparent;
    justify-content: center;
}

.date-field {
    flex: 1;
    min-width: 0;
}

.date-field .form-input {
    text-align: center;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: Outfit;
    font-weight: 400;
    line-height: 14px;
    color: #121212;
    opacity: 0.60;
    outline: none;
    width: 100%;
}

.date-field .form-input:focus {
    opacity: 1;
}

.date-field .form-input::placeholder {
    color: #121212;
    opacity: 0.60;
}

.date-separator {
    color: #121212;
    font-size: 14px;
    font-family: Outfit;
    font-weight: 400;
    opacity: 0.60;
    flex-shrink: 0;
}

/* Focus state for date fields */
.form-group:focus-within .date-fields {
    border: 2px solid #73BCE8;
    background: white;
}

/* Error state styles */
.form-group.has-error .date-fields {
    border: 1px solid #F00000;
    background: #F5F5F5;
    box-shadow: 0 0 0 2.5px rgba(240, 0, 0, 0.25);
}

.form-group.has-error .date-input-mobile-wrapper {
    border: 1px solid #F00000;
    background: #F5F5F5;
    box-shadow: 0 0 0 2.5px rgba(240, 0, 0, 0.25);
}

/* All devices use desktop version */

