/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.app-header {
  padding: 20px;
  padding-bottom: 50px;
  padding-top: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.app-main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  padding: 10px 20px;
  padding-bottom: 40px;
}

.app-main-btn {
  position: relative;
  width: 100%;
}

.app-footer {
  padding: 10px 20px;
  padding-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 200px) {
  .app-footer {
    padding-top: 20px;
  }

  .app-header {
    padding-top: 100px;
  }
}

@media screen and (min-width: 350px) {
  .app-footer {
    padding-top: 60px;
  }

  .app-header {
    padding-top: 130px;
  }
}

.content-container {
  padding: 10px;
  text-align: center;
}

.footer-links {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.app-footer .copyright {
  color: #4c4c4c;
  display: block;
  margin-bottom: 10px;
}

.app-footer .links {
  color: #2183ce;
}

.app-footer .copyright,
.app-footer .links {
  font-weight: 500;
  font-size: 10px;
  line-height: 23px;
  text-align: center;
}

.app-footer .links:hover {
  cursor: pointer;
}

.app-container {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "HelveticaNeueLTPro-Roman", Helvetica, Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑";
}

.app-content {
   background: url(../assets/background.png);
 }

.app-content {
  z-index: 20;
}

.app-content .title {
  color: #4c4c4c;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 20px;
}

.app-content .content {
  color: #4c4c4c;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  display: block;
}

.app-bg {
  z-index: 10;
}

.app-bg-img {
  width: 100%;
  height: 100%;
}

.login-button {
}

.upload-body {
  padding: 15px;
  background: #fafbff;
  height: 98%;
}

.upload-title {
  color: #181818;
  font-weight: 700;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0.02em;
}

.upload-control-label,
.upload-control-label-success,
.upload-control-label-error {
  color: #787878;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
}

.upload-control-label-success {
  color: #60c364;
}

.upload-control-label-error {
  color: #f44336;
}

.upload-checklist-wrapper {
  position: relative;
  width: 330px;
}

.upload-group {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.upload-group > span {
  display: block;
  margin-bottom: 5px;
}

hr {
  height: 1px;
  background-color: #afb4b9;
  border: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.Col {
  display: flex;
  flex-direction: column;
}

.Row {
  display: flex;
  flex-direction: row;
}

.Left {
  justify-content: flex-start;
  align-items: flex-start;
}

.Center {
  justify-content: center;
  align-items: center;
}

.AlignCenter {
  align-items: center;
}

.AlignLeft {
  align-items: flex-start;
}

.JustifyCenter {
  justify-content: center;
}

.JustifyLeft {
  justify-content: flex-start;
}

.JustifyBetween {
  justify-content: space-between;
}

.Gap {
  gap: 10px;
}

.Notification-Wrapper-Shown {
  display: block !important;
}

.Notification-Wrapper-Hidden {
  display: none !important;
}
