/* 2026 Copyright SailPoint Technologies, Inc. All rights reserved. */

:root {
  --slpt-black: #000000;
  --slpt-white: #ffffff;
  --slpt-cobalt: #0033a1;
  --slpt-blue: #0071ce;
  --slpt-pink: #d60eb5;
  --slpt-gray: #415364;
  --color-text: var(--slpt-gray);
  --color-bg: var(--slpt-white);
  /* Poppins should be used for all applications. Available to download for free from Google fonts >

Poppins Semibold – used for bold treatments, like headlines. (we do not use Bold)

Poppins Normal – used for most standard text like body copy.  */
  --font-sans: Poppins, system-ui, -apple-system, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
}

.title {
  font-size: 18px;
}
.copyright {
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 12px;
  padding: 0 0 8px 8px;
  margin: 0;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 0 16px 16px 16px;
  margin: auto;
  margin-top: 0;
}

.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 8px;
  font-size: 14px;
  margin-top: 8px;
}
.form-signin .form-control:focus {
  z-index: 2;
}

#registerButton {
  margin-top: 16px;
  font-weight: semibold;
}

.btn-primary {
  background-color: var(--slpt-blue);
  border-color: var(--slpt-blue);
  font-family: Poppins-semibold;
}

.alert {
  top: 8vh;
}
.alert-primary {
  background-color: var(--slpt-cobalt);
  border-color: var(--slpt-cobalt);
  color: var(--slpt-white);
}
.title-success {
  font-size: 24px;
  font-weight: semibold;
  color: var(--slpt-blue);
}
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 970px) {
  .copyright {
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px;
    position: relative;
  }
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}
