You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.1 KiB
114 lines
2.1 KiB
.header-change-password {
|
|
height: 20vh;
|
|
background-image: linear-gradient(to right, #03c6b8, #009393);
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 175px;
|
|
}
|
|
|
|
.header-change-password .logo {
|
|
width: 220px;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
.header-change-password .logo img {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.change-password-container {
|
|
background: #e6e7e9;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
padding: 50px 20px;
|
|
height: 80vh;
|
|
min-height: 500px;
|
|
}
|
|
|
|
.form-change-password {
|
|
box-shadow: 0 1px 15px 0 rgba(21, 27, 38, .15);
|
|
background: #ffffff;
|
|
border: 0;
|
|
border-radius: 20px;
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: 750px;
|
|
max-height: 400px;
|
|
}
|
|
|
|
.form-change-password h2.title {
|
|
font-size: 18px;
|
|
color: #000000;
|
|
margin-top: 20px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.form-change-password form {
|
|
margin: 20px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.form-change-password-input {
|
|
margin: 0 10px 15px 10px;
|
|
width: 100%;
|
|
max-width: 350px;
|
|
}
|
|
|
|
.form-change-password-input input {
|
|
height: 60px;
|
|
width: 100%;
|
|
line-height: 60px;
|
|
font-size: 18px;
|
|
box-sizing: border-box;
|
|
padding-left: 30px;
|
|
border-radius: 20px;
|
|
background: #e6e7e9;
|
|
border: 0;
|
|
outline: none;
|
|
}
|
|
|
|
.form-change-password-input.err input {
|
|
border: solid 1px #e22028;
|
|
}
|
|
|
|
.form-change-password-input button {
|
|
height: 60px;
|
|
width: 100%;
|
|
line-height: 60px;
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
border: 0;
|
|
border-radius: 20px;
|
|
outline: none;
|
|
background: #00b8b6;
|
|
}
|
|
|
|
.form-change-password-input .ico_input_right {
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 20px;
|
|
}
|
|
|
|
.form-change-password-input .error-help {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.form-change-password-input.err .error-help img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.form-change-password-input.err .error-help p {
|
|
font-size: 18px;
|
|
color: #e22028;
|
|
line-height: 31px;
|
|
margin: 0;
|
|
padding: 0 0 0 40px;
|
|
} |