html {
    background-repeat: no-repeat;
    background-image: radial-gradient(50% 50% at 50% 50%, rgba(35, 190, 160, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    font-family: Titillium Web, sans-serif;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
body{
    height: 100%;
}
.main-body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
.logo-div{
    display: flex;
    justify-content: center;
    
}
.logo{
    width: 375px;
    height: 100px;
}

.page-body{
    background-color: rgb(255, 255, 255);
    min-width: 0px;
    width: 100%;
    max-width: 1000px;
    max-height: 300px;
    min-height: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px;
    box-shadow: rgb(0 0 0 / 1%) 0px 0px 1px, rgb(0 0 0 / 4%) 0px 4px 8px, rgb(0 0 0 / 4%) 0px 16px 24px, rgb(0 0 0 / 1%) 0px 24px 32px;
    border-radius: 30px;
}
.page-container{
    display: flex;
    flex-direction: row;
    padding: 25px;
}
.text-div{
    text-align: center;
    color: #252c32;
    font-weight: 100;

}
.form-container{
    flex-grow: 1;
}
.product-pic{
    width: 200px;
    padding-right :50px;
}
.main-input-container{
    display: flex;
    flex-direction: row;
    padding-bottom: 25px;;
}
.input1{
    flex-grow: 100;
    border-collapse: separate;
    border-spacing: 0 1em;
}
.input-row{
    text-align: center;
}
.labelbox{
    width:auto;
    overflow: hidden;
    padding-bottom: 20px;
    padding-right: 10px;
    font-weight: bold;
}
.input1 input{   
   float: left;
   max-width: 500px;
   min-width: 0px;
   width: 100%;
   height:30px;
   border-radius: 5px;
   box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    border: 1px solid rgb(150,165,165);
}
.input1 input:focus {
    outline: none;
}
.button-container{
    display: flex;
    justify-content: center;
}
.button-green{
    border:0;
    line-height: 2.5;
    border-radius: 8px;
    text-align: center;
    margin-left:5px;
    border:5px;
    border-color: transparent;
    background-color:rgb(150, 165, 165);
    color:white;
    box-shadow: rgb(0 0 0 / 8%) 0px 6px 10px;
    border: none;
    outline: none;
    padding: 2px 15px;
}
.button-green:hover {
    background-color: rgb(126, 139, 139);
}
.button-green:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
}
/* Result PHP Page */
.resultPic{
    display: flex;
    justify-content: center;
}
.resultPic img{
    height : 225;
    width: 262.5;
}
.resultText{
    text-align: center;
    font-weight: bold;
    font-size: large;
    color: RGB(85,120,25);
}
.backbutton{
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 678px) {
    .main-body{
        padding: 25px;
    }
    .page-body{
        overflow: auto;
        max-height: 700px;
        
    }
    .page-container{
        flex-direction: column;
        align-items: center;
    }
    .logo {
        width: 250px;
        height: 60px;
    }
    .text-div {
        font-size: 0.8rem;
    }
    .product-pic{
        padding-right: 0px;
    }
    .button-green{
        font-size: 0.57rem;
    }
    .logo{
        display: none;
    }
}
@media only screen and (max-width: 350px){
    .main-body {
        padding: 10px;
    }
    .logo {
        width: 200px;
        height: 60px;
    }
    .logo{
        display: none;
    }
}