#image--container {
    display: flex;
    align-items: center;
    height: 30dvh;
    overflow: hidden;

    @media (max-height: 600px) and (orientation: landscape) {
        height: 100dvh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        height: 60dvh;
    }

    @media (min-width: 1200px){
        width: 100%;
        height: 70dvh;
        justify-content: flex-start;
    }
}

#image--container > img{
    width: 100%;
    height: auto;   
}

.general--container{
    margin-top: 20dvw;

    @media(max-height: 600px){
        margin-top: 20dvh;
    }

    @media (min-width: 768px) and (min-height: 600px){
        margin-top: 12dvh;
    }

    @media (min-width: 1000px) {
        margin-top: 17dvh;
    }

    @media (min-width: 1200px){
        display: flex;
    }
}

.main--content-container{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    
    @media(min-width: 1200px){
        position: absolute;
        z-index: 1;
        height: 70dvh;
        justify-content: center; 
        align-items: center;
        padding: 0% 10% 0% 0%;
    }
}

.main--content-container::before{
    content: "";
    position: absolute;
    transform: translateY(-99%);
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20vh;
    background-image: linear-gradient(to top, #d8cdc5 15%, rgba(206, 41, 41, 0) 100%);

    @media (max-height: 600px) and (orientation: landscape){
        height: 45vh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        height: 20dvh;
    }

    @media (min-width: 1200px){
        display: none;
    }
}

.picture--container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;

    @media (min-width: 1200px){
        height: 100%;
        width: 50dvw;
    }
}

#franchise-form--box{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 50dvh;
    padding: 8% 5%;
    gap: 8px;
    background-color: #d8cdc5;

    @media (max-height: 600px) and (orientation: landscape){
        height: 100dvh;
        padding: 2% 5%;
        gap: 8px;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        height: 30vh;
        padding: 10% 5%;
    }

    @media (min-width: 1200px){
        height: 100%;
        padding: 40% 10%;
        background-color: transparent;
        background-image: linear-gradient(to right, #d8cdc5 40%, rgba(206, 41, 41, 0) 95%);
    }
}

.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: 1200px){
        width: 60%;
        height: 7%;
        padding: 1.5% 2%;
    }
}

.send-file--button{
    position: absolute;
    z-index: 1;
    border: none;
    background-color: transparent;
    color: #4b3d33;
    font-family: "Montserrat";
    cursor: pointer;
}

#send-file--input-button{
    opacity: 0;
}

.send-file--button:hover{
    color: #fe6300;
}

input[type="file"]{
    position: relative;
    overflow: hidden;
    display: inline-block;
}

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%;
    }
}

.submit--button:hover{
    background-color: #fe6300;
    border: 1px solid #fe6300;
    color: #d8cdc5;
}