﻿body {
  margin: 0;
}

.sentry-gradient-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: rgb(123, 194, 64);
  background: linear-gradient(
    90deg,
    rgba(123, 194, 64, 0.5) 0%,
    rgba(0, 185, 242, 0.5) 100%
  );
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#wrapper {
  background-color: white;
  padding: 50px 30px 20px;
  border-radius: 20px;
  box-sizing: border-box;
  animation: fadein 1s;
}

@keyframes fadein {
  0% {
    opacity: 0;
    margin-top: -50px;
  }

  10% {
    opacity: 0;
    margin-top: -50px;
  }

  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

#api {
  display: flex;
  flex-direction: column-reverse;
}

#api .social {
  padding: 30px 20px;
}

#api #localAccountForm {
  padding: 15px 20px 30px;
}

#api h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0px 15px;
}

#api #localAccountForm h2 {
  margin: 0;
}

#api .accountButton {
}

#api .divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(123, 194, 64, 0.25) 0%,
    rgba(0, 185, 242, 0.25) 100%
  );
  overflow-y: hidden;
}

#api .entry {
  padding-top: 15px;
}

#api .entry-item {
  padding: 10px 0px;
}

#api a {
  color: rgb(0, 185, 242);
  font-weight: bold;
}

#api label,
.password-label {
  font-size: 14px;
  padding-bottom: 3px;
}

/* Styles yoinked from ant */
#api input {
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  display: inline-block;
  font-feature-settings: 'tnum';
  font-size: 13px;
  line-height: 2.4;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 4px 11px;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}

#api input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}

#api input:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  box-shadow: 0 0 0 2px rgb(24 144 255 / 20%);
  outline: 0;
}

#api input::placeholder {
  color: #ccc;
}

#api .error {
  font-size: 13px;
  font-style: italic;
  color: darkred;
}

/* TORQ BUTTON */

#api #MicrosoftAccountExchange {
  padding: 7px 14px;
  background-color: #e72f2c;
  color: white;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #ce201d;
  border-top-color: #f85451;
  border-left-color: #f85451;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

#api #MicrosoftAccountExchange:hover {
  background-color: #ff403d;
}

#api #MicrosoftAccountExchange:hover:active {
  background-color: #c52220;
  margin: 1px -1px -1px 1px;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2) inset;
  border-top-color: #ce201d;
  border-left-color: #ce201d;
  border-bottom-color: #f85451;
  border-right-color: #f85451;
}

#api #MicrosoftAccountExchange:focus {
  outline-color: #931a18;
}

/*SUBMIT BUTTON*/

#api #next,
#continue,
#emailVerificationControl_but_send_code {
  margin-top: 20px;
  padding: 18px;
  width: 100%;
  background: linear-gradient(
    90deg,
    hsl(93deg 36% 60%) 0%,
    hsl(194deg 52% 63%) 100%
  );
  font-weight: bold;
  color: white;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgb(20 166 212);
  border-top-color: rgb(123 223 255);
  border-left-color: rgb(119 243 149);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

#api #next:hover,
#continue:hover,
#emailVerificationControl_but_send_code:hover {
  background: linear-gradient(
    90deg,
    hsl(93deg 46% 66%) 0%,
    hsl(194deg 64% 69%) 100%
  );
  border-top-color: rgb(198 241 255);
}

#api #next:hover:active,
#continue:hover:active,
#emailVerificationControl_but_send_code:hover:active {
  background: linear-gradient(90deg, hsl(92 28% 57%) 0%, hsl(193 37% 58%) 100%);
  margin: 1px -1px -1px 1px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2) inset;
  border-top-color: rgb(20 166 212);
  border-left-color: rgb(20 166 212);
  border-bottom-color: rgb(123 223 255);
  border-right-color: rgb(123 223 255);
}

#api #next:focus,
#continue:focus,
#emailVerificationControl_but_send_code:focus {
  outline-color: rgb(18 99 124);
}

/*RESET PASSWORD FORM*/

#api .intro {
  order: 1;
}

#api #cancel {
  background: none !important;
  border: none;
  margin-top: 20px;
  width: 100%;
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}

.helpLink {
  display: none;
}

li {
  list-style: none;
  background-image: none;
  background-repeat: none;
  background-position: 0;
}
ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

#api #EmailBox {
  margin-left: -50px;
}

#marker {
  display: none;
}
