.password-password-input-container {
display: block;
max-width: 1350px;
padding: 100px 50px;
margin: auto;
}
.password-password-input-container h4 {
text-transform: uppercase;
color: #29A181;
font-weight: bold;
margin-bottom: 2px;
}
.login-form {
}
.login-form .form-wrapper {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.login-form .password-input {
width: 100%;
margin-right: 54px;
height: 67px;
flex: 1;
color: #29A181;
border-bottom: 1px solid #29A181;
padding: 0;
font-size: 14px;
box-sizing: border-box;
}
.login-form ::placeholder { color: #29A181;
opacity: 1; }
.login-form :-ms-input-placeholder { color: #29A181;
}
.login-form ::-ms-input-placeholder { color: #29A181;
}
.login-form .submit-button {
cursor: pointer;
}
.login-form .message {
margin-top: 10px;
display: none;
}
.login-form.error .message {
color: rgb(255, 62, 62);
}
.login-form.success .message {
color: #29A181;
}
@media only screen and (max-width: 1700px) {
}
@media only screen and (max-width: 992px) {
.password-password-input-container {
max-width: 100%;
padding: 42px 24px;
}
.password-password-input-container h4 {
margin-bottom: 32px;
}
.login-form .form-wrapper {
flex-direction: column;
}
.login-form .password-input {
width: 100%;
margin-right: 0;
margin-bottom: 32px;
padding-bottom: 24px;
height: 57px;
}
}