﻿/*Page-specific styling */

.padding {
    padding: 15px;
}
div.simple p{
    justify-content: center;
    display: grid;
    grid-template-columns: 10% 90%;
    width: 90%;
}

div.simple p label {
    grid-column: 1;
    text-align: left;
    text-decoration:bold;
    padding-right: 8px;
    line-height: 1.1;
}

p input{
    grid-column: 2;
    width: minmax(1fr, 90%);
}

textarea{
    width: 90%;
}

.addressrow{
    display: grid;
    justify-content: center;
    width: 90%;
    grid-template-columns: 10% 90%;
    line-height: 13.2px;
}

.addresscontent{
    grid-column: 2;
    display: grid;
    grid-template-columns: 55% 5% 15% 5% 20%;
    justify-content: center;
}

#citylabel{
    grid-column: 1;
}

#city{
    grid-column: 1;
}

#statelabel{
    grid-column: 2;
    padding-left: 1%;
    padding-right: 1%;
    text-align: center;
}


#state{
    grid-column: 3;
    
}

#ziplabel{
    grid-column: 4;
    padding-left: 1%;
    padding-right: 1%;
}



#zip{
    grid-column: 5;

}

