  .rfm-marquee-container {
overflow-x: hidden;
display: flex;
flex-direction: row;
position: relative;
width: var(--width);
transform: var(--transform);
}

.rfm-marquee-container:hover div {
animation-play-state: var(--pause-on-hover);
}

.rfm-marquee-container:active div {
animation-play-state: var(--pause-on-click);
}

.rfm-overlay {
position: absolute;
width: 100%;
height: 100%;
}

.rfm-overlay::before, .rfm-overlay::after {
background: linear-gradient(to right, var(--gradient-color), rgba(255, 255, 255, 0));
content: "";
height: 100%;
position: absolute;
width: var(--gradient-width);
z-index: 2;
pointer-events: none;
touch-action: none;
}

.rfm-overlay::after {
right: 0;
top: 0;
transform: rotateZ(180deg);
}

.rfm-overlay::before {
left: 0;
top: 0;
}

.rfm-marquee {
flex: 0 0 auto;
min-width: var(--min-width);
z-index: 1;
display: flex;
flex-direction: row;
align-items: center;
animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
animation-play-state: var(--play);
animation-delay: var(--delay);
animation-direction: var(--direction);
}

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

100% {
 transform: translateX(-100%);
}
}

.rfm-initial-child-container {
flex: 0 0 auto;
display: flex;
min-width: auto;
flex-direction: row;
align-items: center;
}

.rfm-child {
transform: var(--transform);
}

button.btn-submit {
margin-top: 24px;
}

.form-field {
 border: 1px solid #d1d5db;
 padding: 10px 14px;
 border-radius: 8px;
 font-size: 14px;
 transition: all 0.2s ease-in-out;
 width: 100%;
}
.form-field:focus {
 border-color: #2563eb;
 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
 outline: none;
}
.form-label {
 font-weight: 600;
 font-size: 14px;
 margin-bottom: 5px;
 display: block;
}
.btn-submit {
 background-color: #2563eb;
 color: #fff;
 padding: 11px;
 border-radius: 8px;
 font-weight: 500;
 transition: background 0.2s ease-in-out;
 width: 100%;
}
.btn-submit:hover {
 background-color: #1d4ed8;
}
.details {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
  font-size: 17px;
}
.label {
  width: 180px;
  font-weight: normal;
}
.value {
  font-weight: bold;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.header img {
position: absolute;
left: 100px;
top: 30px;
width: 60px;
}
.header h1 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}
.header h2 {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {

.header img {
    position: relative;
    width: 60px;
    margin: auto;
    left: 0;
    top: -15px;
}

}