﻿input[type="text"], textarea, input[type="password"]
{
    width:100%;
    padding:3px 5px 3px 5px;
    box-sizing: border-box;
    -moz-box-sizing:  border-box;
    -webkit-box-sizing: border-box;
    font-size:1.1em;
}
input[type="text"], input[type="password"]
{
    height:34px; /*2.3em;*/
}
textarea
{
    height:80px;
}

/* texbox */
input.txtSize0
{
    font-weight: normal;
    max-width: 290px; /*20em;*/
    /*width: 10em;
    height: 1.8em;*/
}
input.txtSize1
{
    font-weight: normal;
    /*width: 9.6em;*/
    max-width:170px; /*12em;*/
    /*height: 1.8em;*/
}
input.txtSize2
{
    font-weight: normal;
    /*width: 6em;*/
    max-width:90px; /*6.2em;*/
    /*height: 1.8em;*/
    /*margin: 0 3px 0 0;*/
    
}
input.txtSize3
{
    font-weight: normal;
    /*width: 4.25em;*/
    max-width: 60px;/*4.3em;*/
    /*height: 1.8em;*/
}

input.required, textarea.required
{
    background-color: rgb(0, 128, 0);
}
input[type="text"][data-val=true], textarea[data-val=true], input[type="password"][data-val=true], select[data-val=true]
{
    background-color: rgb(255, 204, 204); 
}

/* placeholder */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder
{
    font-size: 0.85em;
}
input::-moz-placeholder, textarea::-moz-placeholder
{
    font-size: 0.85em;
}
input:-moz-placeholder, textarea:-moz-placeholder
{
    font-size: 0.85em;
} 
input:-ms-input-placeholder, textarea:-ms-input-placeholder  
{
    font-size: 0.85em;
}