first commit

This commit is contained in:
Kenneth Jannette
2024-01-11 18:24:41 -06:00
commit 4c1fb67383
103 changed files with 29954 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
.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;
}