/* Basic Styling */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
body, html {
	height: 100%;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
}
a {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
a:focus {
	outline: none !important;
}
a:hover {
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}
p {
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
	color: #999999;
}
ul, li {
	margin: 0px;
	list-style-type: none;
}
/* Forum Styling */
.field-error {
	text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: red;
	padding-bottom: 20px;
}

input {
	outline: none;
	border: none;
}
select {
	outline: none;
	border: none;
}
button {
	outline: none !important;
	border: none;
	background: transparent;
}
button:hover {
	cursor: pointer;
}
.noMember {
	text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #999999;
	margin-bottom: 5px;
}
.signUp {
	align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #4b2354;
}
.signUp:hover {
  color: #4b2354;
  text-decoration: underline;
}
.login-page {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.login-page::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(221,67,155,0.3);
  pointer-events: none;
}
.login-wrapper {
	content: "";
	display: block;
  width: 390px;
  background: #fff;
  border-radius: 10px;

  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
	padding-left: 55px;
	padding-right: 55px;
	padding-top: 50px;
	padding-bottom: 30px;
}
.login-wrapper img {
	height: 10rem;
	margin-bottom: 4rem;
}
.login-form {
  width: 100%;
}
.wrap-input {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
	margin-bottom: 20px;
}
.input {
  font-size: 16px;
  color: #DD439B;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 62px;
  background: transparent;
  padding: 0 20px 0 23px;
}
.focus-input {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.input:focus + .focus-input {
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
}
.container-login-form-btn {
	padding-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
	margin-top: 20px;
	margin-bottom: 60px;
  min-width: 160px;
  height: 50px;
  background-color: #C42F69;
  border-radius: 25px;

  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
}
.login-form-btn:hover {
  background-color: #DD439B;
  box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -moz-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -webkit-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -o-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -ms-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
}
.focus-input {
  box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -moz-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -webkit-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -o-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -ms-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
}

/* Contact Link Styling */
.contact{
	padding-top: 5px;
}
.contact .fa-facebook{
	color: #C42F69;
}
.contact .fa-instagram{
	color: #C42F69;
}
.contact .fa-twitter{
	color: #C42F69;
}
input[type="file"]{
	display: none;
}
label{
	display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 160px;
  height: 50px;
  background-color: #C42F69;
  border-radius: 20px;

  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(196, 47, 105, 0.5);
}
label:hover {
  background-color: #DD439B;
  box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -moz-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -webkit-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -o-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
  -ms-box-shadow: 0 10px 30px 0px rgba(250, 66, 81, 0.8);
}

#upload-text{
	text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #999999;
}
