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

ul {
  margin: 0;
  padding: 0;
}

/* Tailwind classes */

.m-0 {
  margin: 0;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-3 {
  margin-top: 3px;
}

.mr-10 {
  margin-right: 10px;
}

.font-bold {
  font-weight: 700;
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.text-center {
  text-align: center;
}

/* Arsen Global */

.arsen-welcome__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.arsen-welcome__logo {
  width: 60%;
  max-width: 300px;
  height: auto;
}

.arsen-button--primary {
  background-color: #7367f0;
  color: #fff;
  border: none;
}

.arsen-button--primary:hover,
.arsen-button--primary:focus,
.arsen-button--primary:active {
  background-color: #675be5;
  color: #fff;
  border: none;
}

.arsen-button--primary:disabled {
  background-color: #7367f0;
  color: #fff;
  border: none;
  cursor: not-allowed;
}

/* Arsen Notification */

#arsen-notification-debug {
  overflow-wrap: break-word;
  background-color: #f1f1f1;
  color: #656565;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  animation: slideFadeInUp 0.3s ease-out;
}

#arsen-notification-debug h4 {
  margin: 0;
  padding-bottom: 5px;
}

.hide-arsen-notification-debug {
  display: none;
}

#arsen-notification-error {
  overflow-wrap: break-word;
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  animation: slideFadeInUp 0.3s ease-out;
}

.hide-arsen-notification-error {
  display: none;
}

@keyframes slideFadeInUp {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Microsoft Global */

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

.ms-welcome__progress {
  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 10px;
}

.ms-welcome__main > h2 {
  width: 100%;
  text-align: center;
}

.ms_Image_Title {
  letter-spacing: 3px;
  font-size: 25px;
}

.ms-welcome__features {
  list-style-type: none;
  margin-top: 20px;
}

.ms-welcome__features.ms-List .ms-ListItem {
  padding-bottom: 20px;
  display: -webkit-flex;
  display: flex;
}

.ms-welcome__action.ms-Button--hero {
  margin-top: 30px;
}

.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label {
  color: #005a9e;
  cursor: pointer;
}

b {
  font-weight: bold;
}
