/* 
 * 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;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

ul {
  margin: 0;
  padding: 0;
}

.ms-welcome__header {
  padding: 8px;
  padding-bottom: 8px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.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;
  padding: 10px 25px;
}

.ms-welcome__main>h2 {
  width: 100%;
  text-align: center;
}

.ms-welcome__features {
  list-style-type: none;
  margin-top: 5px;
}

.ms-welcome__features.ms-List .ms-ListItem {
  padding-bottom: 10px;
  display: -webkit-flex;
  display: flex;
}

.ms-welcome__action.ms-Button--hero {
  padding: 4px 8px;
  /* Reduz espaçamento interno */
  font-size: 13px;
  /* Texto menor */
  width: auto;
  /* Ajusta largura automática */
  height: auto;
}

.ms-Button.ms-Button--hero .ms-Button-label {
  color: #fff;
  background-color: #5E92F7;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label {
  color: #005a9e;
  cursor: pointer;
}

.button-group {
  display: flex;
  justify-content: center;
  width: 150px;
  height: auto;
  font-size: 14px;
}

.checkbox {
  width: 100%;
  font-size: 13px;
  padding: auto;
  margin: 5px 5px;
}

b {
  font-weight: bold;
}

hr {
  margin: 10px 10px;
  border: 1px solid #cccccc;
  width: 280px;
  height: auto;
}

h2 {
  margin: 5px;
}

.loading-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  position: center;
}

.loading-container {
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-content {
  display: flex;
  height: 20px;
  width: 20px;
  padding: 20% 20%;
  background: linear-gradient(0deg, #4c94ff, #4c94ff), #533ed1;
  border-radius: 5%;
}

@keyframes upAnimation {

  0%,
  100% {
    transform: translate3d(0, 70%, 0);
  }

  50% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes downAnimation {

  0%,
  100% {
    transform: translate3d(0, -70%, 0);
  }

  50% {
    transform: translate3d(0, 0, 0);
  }
}

.loading-bar-contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.loading-bar-contents>div {
  background: white;
  width: 20%;
  border-radius: 15%;
}

.loading-bar-contents>div:nth-child(1) {
  height: 60%;
  animation: upAnimation 0.7s ease infinite;
}

.loading-bar-contents>div:nth-child(2) {
  height: 100%;
}

.loading-bar-contents>div:nth-child(3) {
  margin-top: 45%;
  height: 60%;
  animation: downAnimation 0.7s ease infinite;
}