﻿@import "ColourScheme.css";

.cover {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    /*width: 100%;*/
    /*background-color: var(--ButtonDefaultColor);*/
    /*background-color: #1b042c;*/
    background-image: url(/Images/Background/Background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right;
    background-size: cover;
}

    .cover > * {
        /*margin-top: 1rem;*/
        /*margin-bottom: 1rem;*/
    }

    .cover > :first-child:not(.page) {
        margin-top: 0;
    }

    .cover > :last-child:not(.page) {
        margin-bottom: 0;
    }

    .cover > .page {
        margin-top: auto;
        margin-bottom: auto;
    }



.signin {
    width: 27.5vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #d0d0d0;
    padding: 2.5rem 2.5rem 5rem 2.5rem;
    /*box-shadow: 0px 16px 18px lightgrey;*/
}

    .signin * {
        width: 100%;
        margin-bottom: 1rem;
    }

.signin-logo {
    height: 20vh;
    width: 100%;
    background-image: url(/Images/Logos/Company_Logo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /*margin-bottom: 0 !important;*/
}

.signin-user {
    min-height: 175px;
    width: 175px;
    background: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.signin h5, .signin h5 span {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem !important;
}

.signin h6, .signin h6 span {
    font-size: 1rem;
    text-align: center;
}

.signin .h7, .signin .h7 span {
    font-size: 0.75rem;
    color: red;
}

.signin a {
    font-family: SiteFont-Bold, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ButtonDefaultColor);
}



@media screen and (max-width: 1280px) {

    .signin {
        width: 40vw;
    }
}



@media screen and (max-width: 980px) {

    .signin {
        width: 75vw;
    }
}



@media screen and (max-width: 600px) {

    .cover {
        background: none;
        background-color: #fff;
    }

    .signin {
        width: 100vw;
        border: none;
        border-radius: 0;
    }

}



.textbox {
    height: 35px;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    /*box-shadow: 10px 10px 16px #201F1F;*/
    outline: none;
    /*font-size: 14px;*/
    font-size: 0.9rem;
}

    .textbox:active, .textbox:focus {
        box-shadow: inset 0px 0 0 2px var(--ButtonDefaultColor);
    }



select {
    width: 100%;
    /*display: block;*/
    /*margin: 10px 0;*/
    outline: none;
}

.dropdown {
    height: 30px;
    width: auto;
    padding: 5px 30px;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 50px;
    /*box-shadow: 10px 10px 16px #201F1F;*/
    outline: none;
    color: #3c4043 !important;
    font-family: SiteFont-Bold, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 0.75rem !important;
    /*-webkit-appearance: none;*/
    -moz-appearance: none;
}

    .dropdown:disabled {
        /*color: #425563;*/
        color: #000;
        background-color: #fff;
    }

    .dropdown:hover {
        /*color: #425563;*/
        color: #000;
        background-color: #f7f8f8;
    }
