.gdc-light {
  font-weight: 300;
}

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

.gdc-body {
  min-height: 100vh;
  font-family: Montserrat;
}

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

#gdc-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gdc-header-title {
  font-size: 2.3em;
  text-align: center;
  text-transform: uppercase;
}

.gdc-login {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  min-height: 100vh;
}

.gdc-login-banner {
  background: linear-gradient(90deg, rgba(58, 193, 155, 0.7) 0%, rgba(59, 114, 195, 0.65) 41.5%, rgba(60, 65, 219, 0.6) 100%),
              url(../img/banner-bg.png);
  background-blend-mode: normal;
  background-size: cover;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: end;
}

.gdc-login-disc {
  font-size: 1.6em;
  color: white;
  margin: 40px;
}

.gdc-login-disc-mobile {
  font-size: 1.2em;
  margin: 20px 0 0 0;
  display: none;
  text-align: center;
}

.gdc-login-form-wrapper {
  box-shadow: 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16),
              0 0 0.375rem 0 rgba(3, 3, 3, 0.08);
  padding: 50px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 600px;
}

.gdc-list-root {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.gdc-list-item {
  flex-basis: 100%;
}

.gdc-button {
  border-color: #c4cdd5;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  color: #6a6e73;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  width: 100%;
  background-color: white;
}

.gdc-button i {
  font-size: 25px;
  width: 30px;
  height: 25px;
}

.gdc-button:hover, .gdc-button:focus {
  text-decoration: none;
  color: rgb(60, 65, 219);
  border-color: rgb(60, 65, 219);
}

.gdc-button-contained {
  border-width: 0;
  background-color: rgb(60, 65, 219);
  color: white;
}

.gdc-button-contained:hover, .gdc-button-contained:focus {
  background-color: rgb(42, 47, 177);
  color: white;
}

.gdc-alert {
  border-radius: 5px;
  border-width: 0;
}

.osf-service-selector {
  margin-bottom: 10px;
  border-width: 0;
  border-bottom-width: 1px;
}

.gdc-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gdc-input-group {
  width: 100%;
  flex: 1;
}

.gdc-label {
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.gdc-input {
  width: 100%;
  outline: none;
  font-size: 15px;
  border-style: solid;
  border-color: #ececec;
  background-color: #ececec;
  border-width: 1px;
  border-radius: 5px;
  padding: 5px;
}

.gdc-input:focus {
  border-color: rgb(42, 47, 177);
}

@media (min-width: 767px) {
  .gdc-list-item.gdc-list-item-grid {
      flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 1000px) {
  .gdc-body {
    background: linear-gradient(90deg, rgba(58, 193, 155, 0.95) 0%, rgba(59, 114, 195, 0.764) 41.5%, rgba(60, 65, 219, 0.65) 100%),
                linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  }

  .gdc-login-disc, .gdc-login-banner {
    display: none;
  }

  .gdc-login-disc-mobile {
    display: block;
  }

  .gdc-login {
    min-height: unset;
    justify-content: center;
    align-items: center;
  }

  .gdc-login-form-wrapper {
    border-radius: 5px;
    margin: 20px;
    width: 400px;
    padding: 30px;
  }

  .gdc-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .gdc-body {
    align-items: stretch;
  }

  .gdc-login-form-wrapper {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
}
