﻿.msgForm{
  width: 500px;max-width: 100%;
}
.msgForm input[type=text],
.msgForm textarea {
  width: 100%;
  height: 30px;
  line-height: 30px;
  vertical-align: text-top;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.msgForm>div {
  position: relative;
  margin-bottom: 18px;
  padding-left: 4em;
  padding-right: 1em;
  font-size: 14px;
}

.msgForm>div span {
  position: absolute;
  display: block;
  top: 0;
  left: 1em;
}

.msgForm textarea {
  height: 100px;
}

.msgForm .must_text:before {
  content: "*";
  color: #f99e00;
  position: absolute;
  right: 0;
  top: 0;
}

.msgForm label.error {
  position: absolute;
  left: 3em;
  top: 30px;
  color: red;
}

.msgForm .btn-box {
  text-align: center;
}

.msgForm .btn-box input.msg_btn {
  height: 30px;
  line-height: 30px;
  width: 90px;
  border-radius: 12px;
  border: 0;
  margin: 0 pxFrem(10);
  color: #fff;
  cursor: pointer;
  font-size: pxFrem(30);
}

.msgForm .btn-box input.msg_btn[type="button"],
.msgForm .btn-box input.msg_btn[type="submit"] {
  background: #00479d;
}

.msgForm .btn-box input.msg_btn[type="reset"] {
  background: url("../Images/reset-bg.jpg");
  background-size: auto 100%;
}

.msgForm .btn-box input.msg_btn[type="button"]:hover,
.msgForm .btn-box input.msg_btn[type="submit"]:hover {
  background: #436d9e;
}