
/* some border radius for various elements and different browsers. CSS isn't perfect */
.rounded, input, .error {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
}

#myform3 {
    background-color:rgba(0, 0, 0, 0.55);
    padding:15px;
    padding-top:8px;
    padding-bottom:8px;
    width:380px;
    margin:0px 0 0 10px;
}

#myform2 {
    background-color:#777;
    background-color:rgba(0, 0, 0, 0.55);
    padding:15px;
    padding-top:8px;
    padding-bottom:8px;
    width:400px;
    margin:0px 0 0 10px;
}

/* the form */
#myform {
    background-color:#777;
    background-color:rgba(0, 0, 0, 0.55);
    padding:15px;
    padding-top:8px;
    padding-bottom:8px;
    width:200px;
    margin:0px 0 0 10px;
}

#myform p {
    clear:left;
}

fieldset {
    float:left;
    margin-left:15px;
    padding:0;
    border:0;
    width:245px;
}

.last {
    margin-right:0;
}

legend {
    color:#fff;
    font-size:20px;
    text-shadow:0 1px 0 #000;
    padding:0;
    margin-bottom:-3px;
}

label {
    display:block;
    margin:3px;
    color:#ddd;
    font-size:12px;
    text-shadow:0 1px 0 #000;
}

/* the form */
#myform2 {
    background-color:#777;
    background-color:rgba(0, 0, 0, 0.55);
    padding:15px;
    padding-bottom:10px;
    width:570px;
    margin:5px 0 0 73px;
}

#myform2 p {
    clear:left;
}

input {
    border:1px solid;
    border-color:#ccc #ddd #ddd #ccc;
    border-radius:5px;
    padding:4px;
    background-color:rgba(255, 255, 255, 0.9);
    font-size:15px;
    color:#555;
    text-shadow:0 1px 0 #fff;
    height:12px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -o-border-radius:5px;
    -ms-border-radius:5px;
}

input:focus {
    background-color:#fff;
    color:#000;
}

input[required] {
    font-weight:bold;
}

#mypassword {
    width:120px;
}
#myusername {
    width:120px;
}

#butentrar {
    width:75px;
    height:25px;
}

#adjuntar {
    height:25px;
}

#butsend {
    height:35px;
}
/* validation error message */
.error {
    background-color:#E8FF6D;
    padding:4px;
    color:#000;
    -webkit-box-shadow: #000 0 0 12px;
    -moz-box-shadow: #000 0 0 12px;
}

/* ..with a pure CSS arrow */
.error em {
    border:10px solid;
    border-color:#E8FF6D transparent transparent;
    bottom:-17px;
    display:block;
    height:0;
    left:10px;
    position:absolute;
    width:0;
}

/* field with validation error */
.invalid {
    background-color:rgba(221, 233, 255, 0.898) !important;
}

/* date input */
.date {
    width:193px;
    background:#666 none repeat scroll 0 0;
    color:#fff;
    text-shadow:0 0 1px #000;
}

.date:focus {
    background-color:#333;
    color:#fff;
}

.button {
    height:100px;
}

/* datepicker trigger element */
.picktrigger {
    background:#333;
    cursor:pointer;
    display:block;
    float:right;
    height:32px;
    width:32px;
}

.picktrigger:hover {
    background:#000;
}

.high {
    padding:15px 0 0 15px;
    clear:both;
}