.container {
    margin: 0 10px;
    margin-top: 75px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form__title {
    font-size: 27px;
    font-family: "RobotoFlex", sans-serif;
    color: #333333;
    margin: 10px 0px;
}

.form button {
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-family: "RobotoFlex", sans-serif;
    font-size: 13px;
    cursor: pointer;
    background-color: royalblue;
    color: white;
}

.form input {
    width: 100%;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-family: "RobotoFlex", sans-serif;
    padding-left: 5px;
    font-size: 13px;
    outline: none;
    padding: 5px;
}

.form input:focus {
    border: 1px solid royalblue;
}

.container__text {
    margin-top: 10px;
    font-family: "RobotoFlex", sans-serif;
    font-size: 13px;
    color: #3d3d3d;
}

.faq__wrapper {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 30px;
}

.faq img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.faq span {
    font-family: "RobotoFlex", sans-serif;
    color: royalblue;
    cursor: pointer;
    font-size: 13px;
}

@font-face {
    font-family: "BalsamqSans";
    src: url("/fonts/BalsamiqSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/RobotoFlex.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}