﻿.responsiveForm > div {
  position: relative;
  padding: 5px;
  margin-bottom: 20px;
}

  .responsiveForm > div label[for]:first-child {
    color: #999;
    box-sizing: border-box;
    display: block;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    pointer-events: none;
    opacity: 1;
    padding: 5px;
    position: absolute;
    left: 8px;
    top: 9px;
    text-align: left;
    transition: all .2s ease-out;
    white-space: nowrap;
    width: 95%;
    z-index: 5;
  }

  .responsiveForm > div.fieldNotEmpty label[for]:first-child {
    color: #007acc;
    font-size: 11px;
    top: -10px;
  }

.responsiveForm .checkboxOrRadio {
  display: block;
  height: 30px;
  margin-top: 20px
}

  .responsiveForm .checkboxOrRadio label {
    margin-right: 15px
  }

.responsiveForm input[type=text], .responsiveForm input[type=password] {
  padding: 5px;
  border-radius: 2px;
  border: none;
  border-bottom: 1px solid silver;
  background-color: #FFF;
  box-sizing: border-box;
  line-height: 1 !important;
  width: 100%;
}

.responsiveForm textarea {
  padding: 5px;
  border: none;
  border-bottom: 1px solid silver;
  border-radius: 2px;
  background-color: #FFF;
  width: 100%;
  box-sizing: border-box;
  line-height: 1 !important;
}

.responsiveForm input[type=checkbox], .responsiveForm input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  vertical-align: middle
}

.responsiveForm select {
  padding: 13px;
  border-radius: 2px;
  background: #FFF;
  border: none;
  border-bottom: 1px solid silver;
  outline: none;
  resize: none;
  cursor: pointer;
  width: 100%;
  line-height: 1 !important;
}

  .responsiveForm select:focus {
  }

  .responsiveForm input.invalid,
  .responsiveForm select.invalid,
  .responsiveForm textarea.invalid {
    border-bottom: 2px solid red !important;
  }

.unstyled {
  padding: 5px !important;
  border-radius: unset !important;
  border: none !important;
  background-color: unset !important;
  width: unset !important;
}

  .unstyled:focus {
    box-shadow: none !important;
  }

.responsiveForm input[type=text]:focus, .responsiveForm input[type=password]:focus, .responsiveForm textarea:focus {
  border-bottom: 2px solid #007acc;
  outline: none;
}

.validatorSummary {
  font-weight: bold;
  color: #ff0000;
  text-align: left;
  font-size: 12px;
  background-color: #fff;
  margin-bottom: 15px;
}

.resp_validator {
  font-size: 11px;
  color: red;
  position: absolute;
  left:10px;
  bottom:-10px
}
