
/**
Author : Fallen_Devil (WaNdEreR)
Created : 16th Aug, 2020
*/

/*--------------------LOGIN-------------------------*/
/*--------------------This css can and will eb used where there is use of form-------------------------*/

input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}


/* Clear floats after the login-button */
.wrap-form::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure the small text paragraphs are styled properly */
.wrap-form p {
  font-size: 14px; /* Adjust font size if needed */
  color: #43383e; /* Match color with form titles */
  text-align: center; /* Center the text */
  margin-top: 10px; /* Space above the text */
  line-height: 1.5; /* Adjust line height for readability */
}

.wrap-form p small {
  display: block;
  margin-top: 11px;
}


.newContainer {
	max-width: 1200px;
}

.form-title{
	display: block;
  font-size: 30px;
  color: #43383e;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 15px;
}

.form-sub-title{
  display: block;
  font-size: 20px;
  color: #43383e;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 35px;
}

.form-notice{
  display: block;
  font-size: 15px;
  color: #E84D3B;
  line-height: 1.2;
  text-align: left;
  padding-top: 55px;
  padding-bottom: 35px;
}
.newContainer-form {
  width: 100%;  
  min-height: 82vh;
  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: #e6e6e6; 
}

.form {
  width: 100%;
}

.wrap-form {
  width: 450px;
  background: transparent;
  padding: 30px 0 80px 0;
}

.wrap-input {
  width: 100%;
  position: relative;
  background-color: #fff;
  margin-bottom: 17px;
}

.wrap-notice {
  width: 100%;
  position: relative;
  margin-bottom: 17px;
}

.input {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 17px;
  color: #000000;
  line-height: 1.2;
  padding: 0 5px;
  border: 0px;
}

.label-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 62px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  font-size: 18px;
  color: #999999;
  font-weight: bold;
}

input.input {
  height: 62px;
  padding: 0 20px 0 58px;
}


textarea.input {
  min-height: 199px;
  padding: 19px 20px 0 23px;
}

.login-button{
  display: inline-block;
  background: #E47D8A;
  color: #ffff !important;
  border-color: #E47D8A !important;
  border: 1px solid;
  border-radius: 4px;
  padding: 4px 4px !important;
  width: 110px;
  text-align: center;
  float: right;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 5px;
  min-height: 40px;
}

.login-button:hover {
  /*opacity: 0.5;*/
  background: #E84D3B;
  border-color: #E84D3B !important;
  text-decoration: none
}

select {
  display: block;
  width: 200px;
  min-height: 40px;
  background: #F5F5F5;
  font-size: 16px;
  color: #000000;
  line-height: 1.2;
  border-color: #F5F5F5 !important;
  border: 1px solid;
  border-radius: 4px;
  padding: 4px 4px !important;
}

/* Adjust styles for screens with a width of 280px or less (Galaxy Fold) */
@media screen and (max-width: 280px) {
  .newContainer-form {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .wrap-form {
    width: 100%; /* Expand the form to full width on smaller screens */
    height: 455px;
  }


}


/*--------------------END-------------------------*/