@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow: auto;
  height: 100%;
}
::selection {
  background: #3d405b;
}
.container {
  max-width: 440px;
  padding: 0 20px;
  margin: 170px auto;
}
.wrapper {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}
.wrapper .title {
  height: 90px;
  background: #3d405b;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form {
  padding: 30px 25px 25px 25px;
}
.wrapper form .row {
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus {
  border-color: #3d405b;
}
form .row input::placeholder {
  color: #999;
}
.wrapper form .row i {
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: #3d405b;
  border: 1px solid #3d405b;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass {
  margin: -8px 0 20px 0;
}
.wrapper form .pass a {
  color: #3d405b;
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover {
  text-decoration: underline;
}
.wrapper form .button input {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #3d405b;
  border: 1px solid #3d405b;
  cursor: pointer;
  text-align: center;
}
form .button input:hover {
  background: #3d405b;
}
.wrapper form .signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}
.wrapper form .signup-link a {
  color: #3d405b;
  text-decoration: none;
}
form .signup-link a:hover {
  text-decoration: underline;
}

h3 {
  font-weight: 400;
  font-size: 16px;
}
p {
  font-size: 12px;
  color: #888;
}

.stage {
  max-width: 80%;
  margin: 60px 10%;
  position: relative;
}
.folder-wrap {
  display: flex;
  flex-wrap: wrap;
}
.tile {
  border-radius: 3px;
  width: calc(20% - 17px);
  margin-bottom: 23px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 35px 16px 25px;
  margin-right: 17px;
  cursor: pointer;
}
.tile:hover {
  box-shadow: 0px 7px 5px -6px rgba(0, 0, 0, 0.12);
}
.tile i {
  color: #00a8ff;
  height: 55px;
  margin-bottom: 20px;
  font-size: 55px;
  display: block;
  line-height: 54px;
  cursor: pointer;
}
.tile i.mdi-file-document {
  color: #8fd9ff;
}

.back {
  font-size: 26px;
  border-radius: 50px;
  background: #00a8ff;
  border: 0;
  color: white;
  width: 60px;
  height: 60px;
  margin: 20px 20px 0;
  outline: none;
  cursor: pointer;
}

/* Transitioning */
.folder-wrap {
  position: absolute;
  width: 100%;
  transition: 0.365s all cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  opacity: 0;
  top: 0;
}
.folder-wrap.level-up {
  transform: scale(1.2);
}
.folder-wrap.level-current {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
  position: relative;
  height: auto;
  overflow: visible;
}
.folder-wrap.level-down {
  transform: scale(0.8);
}

button {
  display: inline-block;
  border-radius: 4px;
  background-color: #3d405b;
  border: none;
  color: #ffffff;
  text-align: center;
  padding: 16px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

button:hover span {
  padding-right: 15px;
}

button:hover span:after {
  opacity: 1;
  right: 0;
}

/* file upload button */
input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #89bff8 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
  33% {
    background-size: calc(100% / 3) 0%, calc(100% / 3) 100%, calc(100% / 3) 100%;
  }
  50% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 0%, calc(100% / 3) 100%;
  }
  66% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%, calc(100% / 3) 0%;
  }
}

html {
  height: 100%;
}
