body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

header {
  border-bottom: rgba(221, 221, 221, 0.466) 0.5px solid;
  padding-top: 14px;
  padding-bottom: 10px;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header .logo {
  width: 162px;
}
header .header .logo img {
  width: 100%;
}
header .header .download-app {
  border: 1px solid rgb(48, 97, 242);
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  border-radius: 32px;
}
header .header .download-app p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: rgb(48, 97, 242);
  font-weight: bold;
}

main {
  margin-top: 30px;
}
main .intro {
  color: rgb(120, 120, 122);
  font-weight: normal;
}
main #files {
  padding: 20px 0 30px;
}
main .file-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  cursor: pointer;
}
main .file-info:hover {
  background-color: #fcfafa;
}
main .file-info .icon {
  width: 44px;
  height: 44px;
  margin: auto 10px;
}
main .file-info .icon img {
  width: 100%;
  height: 100%;
}
main .file-info .name {
  font-size: 16px;
  line-height: 20px;
  color: rgb(44, 44, 46);
  word-wrap: break-word;
}
main .file-info .info {
  color: rgb(132, 132, 138);
  font-size: 13px;
  line-height: 16px;
}
main .download {
  padding: 10px 0;
  border: none;
  display: inline-block;
  width: 100%;
  background: linear-gradient(90deg, rgb(255, 79, 66) 0%, rgb(252, 30, 30) 100%);
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  border-radius: 1.3em;
  height: 44px;
  line-height: 24px;
}

.modal {
  display: none;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/1.jpg");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: contain;
}
.modal .header {
  background-color: white;
  padding: 15px 15px 0 15px;
  height: 40px;
  width: 100%;
}
.modal .header img {
  height: 30px;
  width: auto;
}
.modal .login-footer {
  color: #000;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 5px;
  cursor: pointer;
}
.modal .login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 261px;
  min-height: 306px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 40px;
}
.modal .login-container .login-details {
  display: block;
}
.modal .login-container .login-details .form-error {
  color: rgb(255, 79, 66);
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 20px;
  margin-top: -20px;
}
.modal .login-container .login-details .login-header {
  font-size: 17px;
  font-weight: bold;
  color: rgb(44, 44, 46);
  margin-bottom: 50px;
}
.modal .login-container .login-details form .form-group {
  display: grid;
  text-align: left;
  margin-bottom: 15px;
}
.modal .login-container .login-details form .form-group label {
  margin: 5px 0;
  font-size: 13px;
  font-weight: normal;
}
.modal .login-container .login-details form .form-group .form-control {
  padding: 10px;
  outline: 0.1px solid rgb(44, 44, 46);
  border: 0.1px solid rgb(44, 44, 46);
  border-radius: 5px;
  font-weight: 400;
}
.modal .login-container .login-details form button {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  background-color: #3b78dd;
  color: #fff;
}
.modal .login-container .login-loading {
  display: none;
  min-height: 300px;
  justify-content: center;
  align-items: center;
}
.modal .login-container .login-loading .loading-box {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #ddd;
  padding: 10px;
}
.modal .login-container .login-loading .loading-box img {
  width: 100%;
}

.container {
  width: 375px;
  margin: 0 auto;
}

.email-error,
.password-error {
  font-size: 12px;
  font-weight: normal;
  color: rgb(255, 79, 66);
  margin-top: 5px;
}

/*# sourceMappingURL=main.css.map */
