/* FONT */

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Montserrat-Black;
  src: url('../fonts/montserrat/Montserrat-Black.ttf'); 
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Medium;
  src: url('../fonts/montserrat/Montserrat-Medium.ttf'); 
}

/* STYLE */

body {
  background-color: lightblue;
}

.wrapcontent {
  margin-top: 100px;
  margin-bottom: 100px;
  border-radius: 10px;
  background: #fff;
  padding: 50px 55px 60px 55px;
}

@media (max-width: 900px) {
.wrapcontent {
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 10px;
  background: #fff;
  padding: 30px 15px 40px 15px;
}
}  

.pagetitle {
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  font-family: Montserrat-Black;
}

.wrapinput {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 13px;
  padding: 10px 30px 9px 22px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  font-family: Montserrat-SemiBold;
}

.labelinput {
  font-size: 10px;
  color: #393939;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: Montserrat-SemiBold;
}

.boxinput {
  height: 40px;
  display: block;
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  outline: none;
  border: none;
}

.boxtext {
  height: 200px;
  display: block;
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  outline: none;
  border: none;
}

.submitbutton {
  width: 100%;
  background-color: #333333;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  margin-top: 20px;
  font-family: Montserrat-Medium;
}

.submitbutton:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.redplaceholder::-webkit-input-placeholder {
  color: red;
}

.rate {
    float: left;
    height: 46px;
    padding: 0 0px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:2.5em;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.pageheading {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  font-family: Montserrat-Black;
}

.okbutton {
  background-color: #7cd1f9;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
}

.okbutton:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

#footer {
   position: absolute;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;
   height: 2.5rem;
}

.help-block {
   color: red;
}

.viewcontainer {
	padding: 10px;
}

p {
	font-size: 16px;
	font-family: Montserrat-SemiBold;
}

#page-container {
	position: relative;
}

