@import url("../components/back-button.css");

:root {
    --content-width: 70%;
}

main {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#introduction {
    width: var(--content-width);
    max-width: var(--max-content-width);
    color: white;
}

#form {
    width: var(--content-width);
    max-width: var(--max-content-width);
}

#form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.text-content {
    font-size: 22px;
}

#form form .question {
    width: 100%;
}

#form form .question label {
    font-size: 20px;
}

#form form .question>label {
    font-weight: 700;
    font-size: 24px;
}

#form form .question>label>span {
    font-weight: 700;
    font-size: 32px;
}

#form form .question input {
    width: 100%;
    padding-left: 16px;
    height: 70px;
    margin-top: 8px;
    border-radius: 10px;
    font-size: large;
}

#form form .question-radio .radio-option {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#form form .question-radio>label {
    font-weight: 700;
    font-size: 24px;
}

#form form .question-radio>label>span {
    font-weight: 700;
    font-size: 32px;
}

#form .submit-button-div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 4rem 0;
}

#form .submit-button-div button {
    background-color: #E57C26;
    color: white;
    box-shadow: 0 4px 24px 0 #ff8c2a66;
    font-size: 32px;
    padding: 18px 23px 18px 23px;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
}

#form .submit-button-div button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 124, 38, 0.5);
    background: linear-gradient(135deg, #ff8c2a 0%, var(--color-primary) 100%);
}

#form .submit-button-div button :hover {
    cursor: pointer !important;
}

.form-title {
    display: flex;
    justify-content: center;
    margin: auto;
}

.pipe {
    display: inline;
}

.form-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    width: 733px;
}

.info-text {
    text-align: center;
}

@media (max-width: 998px) {

    #form .submit-button-div button {
        font-size: 22px;
    }

    .info-text {
        font-size: 16px;
    }

    .pipe {
        display: none;
    }

    .text-primary {
        font-weight: 600;
    }
}