.signin-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 3rem 0;
}

#signin-form {
  width: 100%;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#signup-form {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-signin {
  margin-bottom: 3rem;
}

.logo-signin .signin-logo-img {
  width: 100%;
}

.inner-signin-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

label {
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

input[type="email"],
input[type="password"] {
}

.form-control {
	width: 100%;
	height: 50px;
  font-family:auto;
	border-radius: 15px;
	background-color: #ffffff;
	border: none;
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	line-height: 39px;
}

textarea.form-control{
    height: auto;
}

.form-control::placeholder {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #6C7A89;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #6C7A89;
}

button.btn-signin {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  max-width: 179px;
  padding: 10px;
  background-color: #6C7A89;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 2rem 0;
}

button.btn-signin:hover {
  color: #ffffff;
  background-color: #396053;
}

.signup-para-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 2rem 0;
}

.signup-para-div .signup-para {
  font-size: 16px;
  font-weight: 400;
  color: #396053;
}

.signup-para-div .signup-para .link-tagA {
  color: #6C7A89;
}

.link-tagA.positon-absolute {
    bottom: 0;
    right: 0;
    width: 100%;
    display: block;
    float: right;
    display: flex;
    justify-content: end;
    padding: 0.3rem 0;
    color: #6C7A89;
}