﻿/* 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. */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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 {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #F6F6F7;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


/* Style all input fields */
input {
    width: calc(100% - 40px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
}

    /* Style the submit button */
    input[type=submit] {
        background-color: #4CAF50;
        color: white;
    }

/* Style the container for inputs */
.container {
    padding: 20px;
}

/* The message box is shown when the user clicks on the password field */
#message {
    display: none;
    background: #f1f1f1;
    color: #000;
    position: relative;
    padding: 20px;
    margin-top: 10px;
}

    #message p {
        font-size: 11px;
        margin-bottom: 0;
    }

/* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
    color: red;
}

.header {
    flex-direction: row;
    align-items: center;
    padding: 24px 64px;
    background-color: white;
    position: static;
    width: 100%;
    height: 96px;
    left: 0px;
    top: 0px;
}

    .header .logo {
        position: static;
        width: 161px;
        height: 48px;
        left: 64px;
        top: 24px;
        float: left;
        background-image: url(Images/logo.png)
    }

    .header .button {
        float: right;
        vertical-align: middle;
        padding: 10px;
        background-color: #0080DD;
        color: white;
        -ms-border-radius: 5px;
        border-radius: 5px;
    }

.createAccount {
    width: 448px;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: auto;
    background-color: #F6F6F7;
    padding-top: 50px;
}

    .createAccount .paddings {
        /* Auto Layout */
        flex-direction: column;
        align-items: flex-start;
        padding: 64px;
        width: 448px;
        left: 0px;
        top: 0px;
        /* 01 Fill/White */
        background: #FFFFFF;
        /* Shadow Surfaces — ( 2 • 8 ) */
        box-shadow: 0px 2px 8px rgba(73, 78, 92, 0.13);
        border-radius: 8px;
    }

        .createAccount .paddings .createAccountHeader {
            width: 320px;
            top: 64px;
            /* Inside Auto Layout */
            flex: none;
            order: 0;
            flex-grow: 0;
            margin: auto;
        }

            .createAccount .paddings .createAccountHeader .createAccountText {
                width: 320px;
                left: 0px;
                top: 0px;
                /* Headings/Title (24 • 28) */
                /*font-family: Roboto;*/
                font-style: normal;
                font-weight: normal;
                font-size: 24px;
                line-height: 28px;
                /* identical to box height, or 117% */
                /* 03 Text/TextPrimary */
                color: #202021;
            }

            .createAccount .paddings .createAccountHeader .createAccountSubText {
                width: 320px;
                left: 0px;
                top: 44px;
                /* Body/Body (14 • 20) */
                /*font-family: Roboto;*/
                font-style: normal;
                font-weight: normal;
                font-size: 14px;
                line-height: 20px;
                /* or 143% */
                /* 03 Text/TextSecondary */
                color: rgba(32, 32, 33, 0.7);
            }

.inputLabel {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 12px;
}

.inputField {
    margin-bottom: 0;
    font-size: 14px;
    padding: 6px;
    margin-top: 0;
}

.confirmButton {
    margin-top: 10px;
    background-color: #0080DD;
    color: white;
    padding: 4px;
}

.backButton {
    margin-top: 10px;
    background-color: #E1E2E5;
    color: black;
    padding: 4px;
    width: 49%;
    display: inline-block;
}

.createButton {
    margin-top: 10px;
    background-color: #0080DD;
    color: white;
    padding: 4px;
    width: 49%;
    display: inline-block;
}

.passwordLabel {
    font-size: 11px;
}


.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 20px;
    height: 20px;
    margin: auto;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}