.space {
    padding: 4vh 0;
}

.survey {
    width: 100%;
    height: 90vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.survey-bike {
    width: 60vw;
    height: 90vh;
    overflow: hidden;
}

.survey-bike img {
    width: 65vw;
    height: 90vh;
    overflow: hidden;
    filter: brightness(0.95);
}


.test-ride-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 400px;
}

.test-ride-form input,
.test-ride-form select {
    height: 50px;
    padding: 0 15px;

    border: 2px solid #C2C2C2;
    border-radius: 100px;
    color: black;

    font-family: "SF Pro Display", sans-serif;
    font-size: 18px;

    outline: none;
    transition: border-color 0.5s ease
}

.test-ride-form input:focus,
.test-ride-form select:focus {
    border-color: #CC2A33;
    
}


.bike-dropdown {
    position: relative;
    width: 20rem;
    margin-top: 2rem;
}

.bike-select {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;

    border: 2px solid #C2C2C2;
    border-radius: 100px;

    font-family: "SF Pro Display", sans-serif;
    font-size: 18px;

    background: white;
    color: black;

    cursor: pointer;
    outline: none;
    text-align: left;

    transition: border-color 0.3s ease;
}

.bike-dropdown.active .bike-select {
    border-color: #CC2A33;
}

.bike-options {
    position: absolute;
    top: 3.7rem;
    left: 0;
    width: 100%;

    background: white;
    border: 2px solid #CC2A33;
    border-radius: 24px;

    display: none;
    flex-direction: column;
    gap: 0.4rem;

    padding: 0.6rem;
    z-index: 20;
    max-height: 320px;
    overflow-y: auto;
}

.bike-dropdown.active .bike-options {
    display: flex;
}

.bike-option {
    display: flex;
    align-items: center;
    gap: 1rem;

    padding: 0.6rem 0.8rem;
    border-radius: 18px;

    cursor: pointer;
    font-family: "SF Pro Display", sans-serif;
    font-size: 16px;
}

.bike-option:hover {
    background-color: #F5F5F7;
}

.bike-option img {
    width: 75px;
    height: 45px;
    object-fit: contain;
}



.order {
    background: #F5F5F7;
    width: 40vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-right: 2px solid rgba(0, 0, 0, 0.15);
    margin-left: 0;
    gap: 1rem;
}


input[type="tel"] {
    width: 12rem;
    text-align: left;
}

input[type="date"] {
    width: 12rem;
    text-align: left;
}


input[type="text"] {
    width: 25rem;
}


.row {
    display: flex;
    flex-direction: row;
   gap: 2rem;
   align-items: center;
   text-align: center;
}

.bike-select {
    width: 20rem;
    height: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;

    border: 2px solid #C2C2C2;
    border-radius: 100px;

    font-family: "SF Pro Display", sans-serif;
    font-size: 18px;

    background: white;
    color: black;

    cursor: pointer;
    outline: none;

    margin-top: 2rem;
}

.bike-select:focus {
    border-color: #CC2A33;
}



h1 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    padding-top: 1em;
}

.order .tekst {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: -3rem;
}