| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #passwordEmail,
- #passwordReset {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- height: 100vh;
- }
- #passwordEmail a,
- #passwordReset a {
- text-decoration: none;
- }
- #passwordEmail header,
- #passwordReset header {
- font-family: "Open-Sans-Extrabold";
- font-size: 37px;
- font-weight: bolder;
- margin-bottom: 0.7rem;
- }
- #passwordEmail header a,
- #passwordReset header a {
- color: #333;
- }
- #passwordEmail header a:hover, #passwordEmail header a:focus,
- #passwordReset header a:hover,
- #passwordReset header a:focus {
- color: #18306c;
- }
- #passwordEmail main,
- #passwordReset main {
- border-radius: 4px;
- padding: 20px;
- border: 1px solid #b5b5b5;
- background: #fff;
- }
- #passwordEmail main h5,
- #passwordReset main h5 {
- font-weight: bold;
- margin-bottom: 0.9rem;
- }
- #passwordEmail main div:last-child a:hover, #passwordEmail main div:last-child a:focus,
- #passwordReset main div:last-child a:hover,
- #passwordReset main div:last-child a:focus {
- text-decoration: underline;
- }
- #passwordEmail main hr,
- #passwordReset main hr {
- margin: 0.5rem 0;
- border-color: #888;
- }
- #passwordEmail main footer,
- #passwordReset main footer {
- text-align: center;
- font-size: 11px;
- padding-top: 12px;
- color: #6c6c6c;
- }
|