2019-10-28 15:59:19 +00:00
|
|
|
/* Copyright (C) 2019 Storj Labs, Inc. */
|
|
|
|
|
|
|
|
/* See LICENSE for copying information. */
|
2019-04-02 14:38:57 +01:00
|
|
|
|
|
|
|
body {
|
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
|
|
|
background-size: contain;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2019-10-28 15:59:19 +00:00
|
|
|
padding: 60px 0 0 104px;
|
|
|
|
background-color: #f5f6fa;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container .reset-password-input {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container .reset-password-input span {
|
|
|
|
position: absolute;
|
|
|
|
top: 66px;
|
|
|
|
right: 43px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
min-width: 45%;
|
|
|
|
height: 86vh;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__logo {
|
|
|
|
cursor: pointer;
|
2019-12-12 17:59:49 +00:00
|
|
|
width: 140px;
|
2019-04-02 14:38:57 +01:00
|
|
|
height: 62px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__login-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: 6px;
|
2019-10-28 15:59:19 +00:00
|
|
|
border: 1px solid #afb7c1;
|
2019-04-02 14:38:57 +01:00
|
|
|
cursor: pointer;
|
|
|
|
width: 160px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__login-button p {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-04-02 14:38:57 +01:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
margin-block-start: 0;
|
|
|
|
margin-block-end: 0;
|
2019-04-03 17:25:18 +01:00
|
|
|
color: #354049;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__login-button:hover {
|
2019-10-28 15:59:19 +00:00
|
|
|
background-color: #2683ff;
|
|
|
|
border: 1px solid #2683ff;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__login-button:hover p {
|
2019-04-03 17:25:18 +01:00
|
|
|
color: white;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area {
|
|
|
|
background-color: transparent;
|
|
|
|
width: 477px;
|
|
|
|
border-radius: 6px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
margin-top: 150px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__title-container {
|
|
|
|
height: 48px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-end;
|
|
|
|
flex-direction: row;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__title-container h1 {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-04-02 14:38:57 +01:00
|
|
|
font-size: 22px;
|
2019-04-03 17:25:18 +01:00
|
|
|
color: #354049;
|
2019-04-02 14:38:57 +01:00
|
|
|
line-height: 27px;
|
|
|
|
margin-block-start: 0;
|
|
|
|
margin-block-end: 0;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 20px;
|
2019-04-10 20:16:10 +01:00
|
|
|
border: none;
|
|
|
|
padding: 0;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__send-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: #2683ff;
|
|
|
|
border-radius: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
height: 48px;
|
2019-04-03 17:25:18 +01:00
|
|
|
box-shadow: none;
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__send-button p {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_bold', sans-serif;
|
2019-04-02 14:38:57 +01:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
margin-block-start: 0;
|
|
|
|
margin-block-end: 0;
|
|
|
|
color: white;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__send-button:hover {
|
2019-10-28 15:59:19 +00:00
|
|
|
box-shadow: 0 4px 20px rgba(35, 121, 236, 0.4);
|
2019-04-02 14:38:57 +01:00
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area input {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-04-02 14:38:57 +01:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 21px;
|
|
|
|
resize: none;
|
|
|
|
height: 46px;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-indent: 20px;
|
|
|
|
border-color: rgba(56, 75, 101, 0.4);
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area input::placeholder {
|
2019-10-28 15:59:19 +00:00
|
|
|
color: #384b65;
|
2019-04-02 14:38:57 +01:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area input:first-of-type {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.planet {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -61px;
|
|
|
|
right: -257px;
|
|
|
|
z-index: -100;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.loading-overlay {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 100;
|
|
|
|
background-color: rgba(134, 134, 148, 0.7);
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transition: all 0.5s linear;
|
|
|
|
-moz-transition: all 0.5s linear;
|
|
|
|
-o-transition: all 0.5s linear;
|
|
|
|
transition: all 0.5s linear;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.loading-overlay img {
|
|
|
|
z-index: 200;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.loading-overlay.active {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
.image {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-11-14 17:51:14 +00:00
|
|
|
.st1 { fill: #2683ff; }
|
|
|
|
.st2 { fill: #007aff; }
|
|
|
|
.st3 { fill: #0062ff; }
|
|
|
|
.st4 { fill: #fff; }
|
|
|
|
.st5 { fill: #6cb9ff; }
|
|
|
|
.st6 { fill: #499ffc; }
|
|
|
|
.st7 { fill: #f7f9f9; }
|
|
|
|
.st8 { fill: #0f002d; }
|
|
|
|
.st9 { fill: #dedefc; }
|
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
@media screen and (max-width: 1500px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
min-width: 45%;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
@media screen and (max-width: 1300px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
min-width: 75%;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-03 17:25:18 +01:00
|
|
|
.image {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-height: 840px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
height: 770px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
overflow: -moz-scrollbars-none;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper::-webkit-scrollbar {
|
|
|
|
width: 0 !important;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-height: 810px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
height: 700px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 840px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.planet {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 800px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container {
|
|
|
|
padding: 0;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.planet {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 650px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 520px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 420px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
@media screen and (max-width: 320px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__wrapper {
|
|
|
|
width: 300px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__header {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-container__login-button {
|
|
|
|
width: 120px;
|
|
|
|
height: 42px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__title-container h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__terms-area h2 {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__send-button {
|
|
|
|
height: 40px;
|
|
|
|
}
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
.reset-password-area__submit-container__send-button p {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|