66 lines
1.1 KiB
SCSS
66 lines
1.1 KiB
SCSS
.password-reset-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 25px;
|
|
align-items: center;
|
|
}
|
|
|
|
.password-reset-header-text {
|
|
letter-spacing: -0.6px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.password-reset-button-wrapper {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.password-reset-form-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 25px;
|
|
width: 600px;
|
|
padding: 12px;
|
|
border-radius: 10px;
|
|
background-color: var(--background-blue);
|
|
border: 1px solid #e9e9e9;
|
|
}
|
|
|
|
.password-reset-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 240px;
|
|
width: 80%;
|
|
}
|
|
|
|
.password-reset-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
letter-spacing: -0.1px;
|
|
}
|
|
|
|
.success-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0px auto;
|
|
min-height: 20px;
|
|
}
|
|
|
|
.reset-sent-text {
|
|
font-size: 1.1rem;
|
|
}
|
|
.alert-box {
|
|
min-height: 35px;
|
|
}
|
|
|
|
.password-reset-alert {
|
|
padding-left: 5px;
|
|
color: red;
|
|
}
|