@font-face {
    font-family: "KapraNeuePro";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Kapra-Neue-Pro-Regular.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: medium;
    font-weight: 600;
    src: url(../fonts/Kapra-Neue-Pro-Medium.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: bold;
    font-weight: 700;
    src: url(../fonts/Kapra-Neue-Pro-Semi-Bold.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: bold;
    font-weight: 900;
    src: url(../fonts/Kapra-Neue-Pro-Bold.otf) format("opentype"); }

@font-face {
    font-family: "KapraNeuePro-light";
    font-weight: 100;
    src: url(../fonts/Kapra-Neue-Pro-Thin-Exp-Rd.otf) format("opentype"); }


body {
    font-family: "KapraNeuePro", sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 20px;
}

form {
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #000;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column-reverse;
}

.form-left {
    width: 100%;
}

.form-right {
    width: 100%;
}

.form-footer {
    width: 100%;
    font-family: "KapraNeuePro-light", sans-serif;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-family: "KapraNeuePro", sans-serif;
    font-size: 20px;
}

a {
    color: #fff;
}

input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid grey;
    background-color: transparent;
    color: white;
    outline: none;
    transition: border-bottom-color 0.3s;
    font-family: "KapraNeuePro-light", sans-serif;
    font-size: 18px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    border-bottom-color: white;
}

input[type="radio"] {
    appearance: none;
    background-color: #111;
    border: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
}

input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-selection label {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px; /* Add some margin to separate the radio buttons */
}

.service-selection {
    margin-top: 20px; /* Add margin to separate from other elements */
}

.submit-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

button {
    padding: 15px 35px;
    border: 2px solid #fff;
    border-radius: 0px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "KapraNeuePro", sans-serif;
}

button:hover {
    background-color: #000;
    color: #fff;
}

.operators {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 10px;
    justify-content: space-between;
    margin: 10px 0;
}

.operator {
    width: calc(50% - 5px); /* Two operators per row */
    height: 70px;
    padding: 5px 20px;
    cursor: pointer;
    object-fit: contain;
    border: 1px solid #fff;
    background-color: #000;
    box-sizing: border-box; /* Include padding in width calculation */
}

.operator.selected {
    filter: invert(1);
}

.service-selection {
    display: none;
}

p {
    font-family: "KapraNeuePro-light", sans-serif;
    font-size: 20px;
}

/* Media query for larger screens */
@media (min-width: 769px) {
    .form-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row;
    }

    .form-left, .form-right {
        width: 48%;
    }

    .form-footer {
        width: 100%;
        font-family: "KapraNeuePro-light", sans-serif;
    }

    .operator {
        width: calc(25% - 10px); /* Four operators per row */
    }
    

    p {
        font-family: "KapraNeuePro-light", sans-serif;
        font-size: 20px;
    }
}
