| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #passwordEmail,
- #passwordReset,
- #passwordConfirm {
- background: #0f0f0f;
- 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,
- #passwordConfirm a {
- text-decoration: none;
- }
- #passwordEmail header,
- #passwordReset header,
- #passwordConfirm header {
- font-family: "Open-Sans-Extrabold";
- font-size: 37px;
- font-weight: bolder;
- margin: 1.6rem 0;
- }
- #passwordEmail header a,
- #passwordReset header a,
- #passwordConfirm header a {
- color: #d3d629;
- }
- #passwordEmail header a:hover, #passwordEmail header a:focus,
- #passwordReset header a:hover,
- #passwordReset header a:focus,
- #passwordConfirm header a:hover,
- #passwordConfirm header a:focus {
- color: #a8aa2f;
- }
- #passwordEmail main,
- #passwordReset main,
- #passwordConfirm main {
- max-width: 400px;
- padding: 10px;
- }
- #passwordEmail main h5,
- #passwordReset main h5,
- #passwordConfirm main h5 {
- font-weight: bold;
- margin-bottom: 0.9rem;
- }
- #passwordEmail main form div:last-child a,
- #passwordReset main form div:last-child a,
- #passwordConfirm main form div:last-child a {
- color: #0066c0;
- }
- #passwordEmail main form div:last-child a:hover, #passwordEmail main form div:last-child a:focus,
- #passwordReset main form div:last-child a:hover,
- #passwordReset main form div:last-child a:focus,
- #passwordConfirm main form div:last-child a:hover,
- #passwordConfirm main form div:last-child a:focus {
- color: #00558c;
- text-decoration: underline;
- }
- #passwordEmail main hr,
- #passwordReset main hr,
- #passwordConfirm main hr {
- margin: 0.5rem 0 0.9rem 0;
- border-color: #888;
- }
- #passwordEmail main footer,
- #passwordReset main footer,
- #passwordConfirm main footer {
- text-align: center;
- font-size: 11px;
- color: #6c6c6c;
- background: transparent;
- border: 0;
- padding: 0;
- }
|