﻿/* CUSTOMER INFO */

form{
    background-color: #D8F6CE;
}
ul{
    text-align:center;
}
.messages{
    text-align:center;
    font-size: 1.5em;
    margin: 0em auto;
}
.wrapper{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.input_box{
    width:10em;
    font-size: 1.25em;
}
.links li{
    display:inline-block;
    font-size: 1.25em;
    padding: .5em;
}

/* iPad Mini */
@media only screen and (min-width:768px) and (min-height: 1024px) and (orientation:portrait){
    form {
        border: .15em solid #000000;
        padding: 2em;
    }
    .wrapper{
        display:flex;
        flex-direction:row;
        justify-content: space-around;
    }
}

/* Galaxy Note 3 & iPhone 6 */
@media only screen and (min-width:640px) and (min-height: 360px) and (orientation:landscape){
    .wrapper{
        display:flex;
        flex-direction:row;
        justify-content:space-around;
    }
}

/* iPad Mini */
@media only screen and (min-width:1024px) and (min-height: 768px) and (orientation:landscape){
    form {
        border: .15em solid #000000;
        padding: 2em;
    }
}












