Files
ax3Client/src/styles/password-reset.scss
Kenneth Jannette 4c1fb67383 first commit
2024-01-11 18:24:41 -06:00

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;
}