@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");
.more-pens {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10;
  font-family: "Montserrat";
  font-size: 12px;
}

a.white-mode, a.white-mode:link, a.white-mode:visited, a.white-mode:active {
  font-family: "Montserrat";
  font-size: 12px;
  text-decoration: none;
  background: #212121;
  padding: 4px 8px;
  color: #f7f7f7;
}
a.white-mode:hover, a.white-mode:link:hover, a.white-mode:visited:hover, a.white-mode:active:hover {
  background: #edf3f8;
  color: #212121;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #000000;
}

.title {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "Montserrat";
  text-align: center;
  width: 100%;
}
.title h1 {
  position: relative;
  color: #EEEEEE;
  font-weight: 600;
  font-size: 60px;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1;
  text-shadow: 0 0 30px #000155;
}
.title h1 span {
  font-weight: 600;
  padding: 0;
  margin: 0;
  color: #BBB;
}
.title h3 {
  font-weight: 200;
  font-size: 20px;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #EEEEEE;
  letter-spacing: 2px;
  text-shadow: 0 0 30px #000155;
}
label {
  color: white;
}

.form-control::-webkit-input-placeholder { /* Edge */
  color: white;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

.form-control::placeholder {
  color: white;
}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  resize: none;
  color: white;
}
textarea.form-control {
	color: white
}
.form-control:focus {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
  outline: none;
  	color: white;
  border-color: white;
}
span.confirm {
	color: white;
}
.btn, .btn:hover, .btn:focus {
  color: white;
  font-weight: 400;
  background: transparent;
outline:none;
      width: 100%;
    border: 1px solid white;
    border-radius: 0;
    padding: 12px;
}