﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    background-image: url('../assets/intro-back.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/* Auth styles
-------------------------------------------------- */
@font-face {
    font-family: 'Tomorrow';
    src: local('Tomorrow'), url('../assets/Tomorrow-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'TomorrowBold';
    src: local('TomorrowBold'), url('../assets/Tomorrow-Bold.ttf') format('truetype');
}
.logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 96px;
}
.logo-container img {
    width: 128px;
    height: 128px;
}
.logo-container label {
    color: #78D2F1;
    font-family: TomorrowBold;
    font-style: italic;
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    margin-top: 50px;
}
.auth-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-container .decorate-line {
    background: #78D2F1;
    width: 100%;
    height: 6px;
    position: absolute;
    top: 50%;
}
.auth-container .form-container {
    display: flex;
    position: relative;
}
.auth-container .form-wrapper {
    margin: auto;
    position: relative;
}
.auth-container .forgot .form-wrapper {
    height: 381px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-container .form-wrapper .form-error {
    font-family: Tomorrow;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FF8E8E;
    margin-left: 50px;
}
.auth-container .form-wrapper .form-content {
    width: 640px;
    height: 330px;
    margin: 8px 0;
    padding: 0 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #78D2F1;
    box-sizing: border-box;
    backdrop-filter: blur(37px);
    border-radius: 24px;
}
.auth-container .forgot .form-wrapper .form-content {
    height: 160px;
}
.auth-container .form-field {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 54%;
}
.auth-container .form-field label {
    font-family: Tomorrow;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.auth-container .form-field input {
    border: none;
    color: white;
    background: transparent;
    font-family: Tomorrow;
    font-size: 27px;
}
.auth-container .form-field input:focus {
    outline: none;
}
.auth-container .form-field input:-webkit-autofill,
.auth-container .form-field input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
.auth-container .form-field input:-webkit-autofill::first-line {
    font-size: 27px;
}

.auth-container .form-separator {
    height: 1px;
    background: #78D2F1;
    margin: 0 -36px;
}

.auth-container .route-forgot {
    font-family: Tomorrow;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-decoration-line: underline;
    color: white;
    float: right;
    margin-right: 20px;
}

.auth-container .decorate-ellipse-left {
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 9px);
    left: -11px;
    border-radius: 12px;
    background: #78D2F1;
}

.auth-container .decorate-ellipse-right {
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 9px);
    right: -11px;
    border-radius: 12px;
    background: #78D2F1;
}

.no-button {
    background: transparent;
    border: none;
}

.auth-container .decorate-arrow-right {
    width: 72px;
    height: 72px;
    position: absolute;
    top: calc(50% - 33px);
    right: -35px;
    cursor: pointer;
}

.form-header {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 70px;
}

.form-header .route-back {
    font-family: Tomorrow;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-decoration-line: underline;
    color: white;
    margin-right: 20px;
}

.form-footer .button-submit {
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    background: #78D2F1;
    border-radius: 20px;
    text-align: center;
    font-family: Tomorrow;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    width: 100%;
}