﻿html {
    background-color: #fef2e9;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar { /* Chrome, Safari, */
    display: none;
}


/*#region nav */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 10vh;
}

.nav-container .nav-right {
    padding-right: 10px;
    display: flex;
}

.nav-left img {
    height: 10vh;
}


.nav-right a {
    margin-left: 20px;
}


.nav-right a:first-child {
    margin-left: 0;
}

/*#endregion */

/*#region footer */

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/*#endregion */

/*#region elements */

h1 {
    font-size: 60px;
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
    margin-bottom: 5px;
}

p {
    margin: 0;
    padding: 5px;
}

a {
    color: grey;
    text-decoration: underline 2px rgba(0, 0, 0, 0);
    transition: text-decoration-color 300ms;
    margin: 0 5px;
}

a:hover {
    color: black;
    text-decoration-color: rgba(0, 0, 0, 1);
}

input {
    width: 100%;
    border: 1px solid #f48120;
    padding: 10px 20px;
    border-radius: 50px;
    box-sizing: border-box;
    /*background: #f2f2f2;*/
    /*box-shadow: 5px 5px 5px #b8b8b8, -5px -5px 5px #ffffff;*/
}

.checkbox input{
    width: auto;
}

input:focus-visible {
    outline: none;
}

/*
Forces override of bootstrap code for password fields to match other buttons
Sadly, this creates duplicate code.. Stupid Bootstrap >:(
*/
.password-fix .itg-trigger-container{
    width: 100% !important;
}

.password-fix .itg-input-container{
    overflow: visible !important;
}

hr {
    width: 75%;
}

button {
    border: none;
    padding: 10px 20px;
    text-transform: capitalize;
    border-radius: 30px;
}

.animated-btn,.microsoft-btn{
    color: white;
    width: 75%;
    max-width: 25rem;
    transition: 0.5s;
    background: linear-gradient(145deg, #dc741d, #ff8a22);
    box-shadow: 5px 5px 15px #c0c0c0, -5px -5px 15px #ffffff;
}

.animated-btn:hover,.microsoft-btn:hover {
    box-shadow: 10px 10px 20px #b3b3b3, -10px -10px 20px #ffffff;
    transform: translateY(-1px);
}

.animated-btn:focus,.microsoft-btn:focus {
    box-shadow: inset 5px 5px 10px #9f5415, inset -5px -5px 10px #ffae2b;
    transform: translateY(0);
    transition: 0s;
}

.microsoft-btn {
    color: black;
    background: #f0f0f0;
    box-shadow: 5px 5px 15px #c0c0c0, -5px -5px 15px #ffffff;
}

.microsoft-btn:focus {
    box-shadow: inset 5px 5px 10px #9fa7a3, inset -5px -5px 10px #ecf5f1;
}

.x-icon {
    height: 1em;
    width: 1em;
    top: .125em;
    position: relative;
}

.x-alt {
    color: #777;
}

/*#endregion */


/*#region layout */

.outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width: 50vw;
    /* Whatever width you want */
}

.row,.row-full {
    display: flex;
    flex-direction: row;
    padding: 5px 0;
}

.row-full{
    width: 100%;
    justify-content: center;
}

.column,.column-full {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
}

.column-full{
    width: 100%;
}

.flex-center {
    justify-content: space-evenly;
    align-items: center;
}

.space-around {
    justify-content: space-around;
    align-content: center;
}

.wd-3-4 {
    width: 75%;
}

.wd-2 {
    width: 50%;
}

.wd-4 {
    width: 25%;
}

.manage-list {
    list-style-type: none;

}

/*#endregion */


/*#region content */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.container .pb-1 {
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    text-align: center;
    /*
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    */


    width: 50vw;
    padding: 20px;
    background-color: rgb(255,255,255, 128);
    border-radius: 50px;
    box-shadow: 5px 5px 15px #c0c0c0, 0px 0px 0px #ffffff;
}

.form-floating {
    padding: 0 10px;
    margin-bottom: 2px;
    width: 75%;
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-spacer{
    margin-top: 0;
}

.other-services {
    margin-top: 2vh;
    margin-bottom: 2vh;
    width: 100%;
}

.form-header {
    width: 75%;
    margin: 0 auto 1rem auto;
}

.text-danger,.text-danger-small,.text-danger-right {
    position: relative;
    color: #dc3545;
    margin-top: .2em;
}

.text-danger-small,.text-danger-right{
    font-size: 12px;
}

.text-danger-right{
    align-self: self-end;
}

.text-danger ul {
    margin: 0;
    padding: 0;
}

.text-danger li {
    list-style: none;
}
/*#endregion */


