.main--content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
    margin-top: 10dvh;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 1% 5%;
        margin-top: 20dvh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 1% 5%;
        margin-top: 12dvh;
    }

    @media (min-width: 1000px){
        padding: 2% 8%;
        gap: 25px;
        margin-top: 17dvh;
    }
}

.form--container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;

    padding: 1% 2%;

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 0%;
    }

    @media (min-width: 1000px){
        flex-direction: row;
        height: 60dvh;
    }
}

.franchise-text--box{
    flex: 1;
    display: flex;
    justify-content: baseline;
    align-items: baseline;
    flex-direction: column;
    height: 100%;
    font-family: "Montserrat";
    text-align: justify;
    font-size: 12px;
    padding: 5% 5%;
    color: #4b3d33;

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 1% 5%;
        font-size: 15px;
    }

    @media (min-width: 1000px){
        padding: 0% 8%;
        font-size: 17px;
        margin-top: 6%;
    }
}

#franchise-form--box{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 50dvh;
    padding: 2% 5%;
    gap: 8px;

    @media (max-height: 600px) and (orientation: landscape){
        height: 100dvh;
        padding: 2% 5%;
        gap: 8px;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        height: 30dvh;
        padding: 2% 5%;
    }

    @media (min-width: 1000px){
        height: 80%;
        padding: 2% 5%;
    }
}

.input-decoration--div{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #302f2f;
    width: 90%;
    height: 7%;
    padding: 2% 3%;

    @media (min-width: 768px) and (min-height: 600px) {
        width: 60%;
        height: 7%;
        padding: 1%;
    }

    @media (min-width: 1000px){
        width: 100%;
        height: 7%;
        padding: 1% 2%;
    }
}

input{
    display: flex;
    align-items: center;
    width: 100%;
    height: 80%;
    outline: none;
    text-decoration: none;
    font-size: 12px;
    font-family: "Montserrat";
    background-color: transparent;
    color: #4b3d33;
    border: none;
}

.submit--button{
    font-size: 12px;
    font-family: "Montserrat";
    background-color: transparent;
    color: #4b3d33;
    border: 1px solid #4b3d33;
    border-radius: 5px;
    font-weight: bold;
    padding: 3% 7%;
    cursor: pointer;


    @media (max-height: 600px) and (orientation: landscape){
        padding: 2% 12%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 2% 5%;
    }

    @media (min-width: 1200px){
        padding: 1.5% 6%;
    }
}

h1{
    text-align: center;
}

.page--title{
    color: #4b3d33;
    font-family: "Montserrat";
    padding: 2% 5%;
    font-size: 18px;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 3% 1% 0% 1%;
    }

    @media (min-width: 768px) and (min-height: 600px){
        padding: 0% 1%;
        font-size: 22px;
    }
}

.text--section{
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    width: 100%;
    text-align: justify;
    color: #4b3d33;
    font-family: "Montserrat";
    font-size: 12px;
    padding: 0% 0% 2% 0%;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 0%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 0%;
    }

    @media (min-width: 1000px){
        padding: 0% 0% 3% 0%;
        font-size: 18px;
    }
}

.main-text--container{
    flex: 1;
    padding: 5%;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 0% 2%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 1% 2%;
    }

    @media (min-width: 1000px){
        padding: 0% 2%;
    }
}

.submit--button:hover{
    background-color: #fe6300;
    border: 1px solid #fe6300;
    color: #d8cdc5;
}