/* 
 * 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;
}

.ms-welcome__header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.ms-welcome__header > .header-img {
  width: 75px;
  height: 75px;
}

.ms-welcome__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;
}

.ms-description {
  padding: 2.5px 15px;
}

#passwordInput {
  margin-right: 10px;
}

.ms-welcome__action.ms-Button--hero {
  margin: 10px 0px;
}

.ms-Button-label {
  background-color: #1e3888;
  border-radius: 7px;
  color: #ffffff;
  padding: 5px 20px;
}

.ms-Button-label:hover {
  opacity: 0.8;
  cursor: pointer;
}

b {
  font-weight: bold;
}

.passwordContainer {
  width: 95%;
  margin-top: 0px auto;
  text-align: left;
}

.passwordContainer > label {
  font-size: 15px;
  letter-spacing: 1.5px;
}

.passwordInputWrapper {
  margin-top: 3px;
  display: flex;
  align-items: center;
}

#passwordInput {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border: 2px solid #d2d5da;
  border-radius: 5px;
  font-size: 15px;
}

#togglePassword {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.eyeIcon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/eye.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#togglePassword.hide .eyeIcon {
  background-image: url("../../assets/eyeClose.svg");
}

.accordion {
  cursor: pointer;
  width: 100%;
  padding: 10px 18px;
  text-align: left;
  border: none;
  border-bottom: 1px solid #d2d5da;
  color: #545454;
  background-color: #f5f5f5;
  outline: none;
  justify-content: space-between;
  background-color: none;
  align-items: center;
  font-size: 18px;
  letter-spacing: 2.5px;
  transition: 0.4s;
  display: flex;
}

.active,
.accordion:hover {
  opacity: 0.8;
  font-weight: bold;
}

.accordion:after {
  content: "\25B6";
  font-size: 16px;
  color: #777;
  float: right;
  margin-left: 5px;
  transition: transform 0.2s ease-out;
}

.active:after {
  transform: rotate(90deg);
}

.panel {
  max-height: 0;
  margin-top: 15px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#run {
  z-index: 2;
}

.runningSpinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #777777;
  opacity: 0.3;
  z-index: 1;
  display: none;
}

.runningSpinner .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #777777;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: calc(50% - 50px / 2);
  left: calc(50% - 50px / 2);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.errorMessageArea {
  width: 95%;
  margin-top: 0px auto;
  color: #b64b4b;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  display: none;
}
