﻿/* Global */
* {
    box-sizing: border-box;
}

::-ms-reveal {
    display: none;
}

input[type="text"] {
    font-family: 'RobotoLight', sans-serif;
}

body {
    background: #F3F6F9;
    margin: 0;
    padding: 0;
    font-family: var(--TextFont);
    font-size: 15px;
    color: #787878;
}

    body#loginPage, body#passwordForgetPage {
        background: url(Images/ClientSpecific/Login/Loginpage.jpg);
        background-size: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 215px bottom;
    }

    body input {
        font-size: 15px;
    }

h1#titlePage {
    font-family: var(--HeaderFont);
    font-size: 25px;
    margin: 0;
}

.loginFormWrap, .forgetPasswordFormWrap {
    background: #333333;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 0 var(--ComponentRadius) var(--ComponentRadius) 0;
    justify-content: center;
    color: #f9f9f9;
}

::placeholder {
    color: #ccc;
    font-family: 'RobotoLight', sans-serif;
}

.btn {
    padding: 10px 25px;
    font-family: var(--ButtonTextFont);
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    border: none;
    border-radius: var(--ButtonRadius);
    text-decoration: none;
    width: max-content;
}

    .btn:hover {
        color: var(--ButtonTextColorHover);
        background: var(--ButtonColorHover);
        cursor: pointer;
        transition: var(--ButtonTransition);
    }

.lnk {
    color: #787878;
    text-decoration: none;
}

    .lnk:hover {
        text-decoration: underline;
        color: #000;
        transition: var(--ButtonTransition);
    }

#divWelcomeMessage {
    display: block;
    width: auto;
    text-align: center;
    font-family: 'RobotoBold', sans-serif;
    font-size: 30px;
    margin-top: 25px;
    color: #000;
    display: none;
}

    #divWelcomeMessage span {
        font-family: 'RobotoRegular', sans-serif;
        color: #787878;
        font-size: 15px;
        display: block;
    }

/* Login */

.loginContainer {
    display: grid;
    grid-template-columns: 550px auto;
    height: 100%;
    align-items: center;
}

img#loginCustomerLogo {
    max-width: 200px;
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}

.loginFormWrap form {
    background: #333333;
    border-radius: var(--ComponentRadius);
    padding: 25px;
    width: 40%;
    margin: 0 auto;
    min-width: 400px;
    display: grid;
    max-width: 400px;
}

.forgetPasswordFormWrap form {
    max-width: 400px;
    min-width: 400px;
    min-height: 450px;
    padding: 25px;
}

.btn.login, .passwordForget, .btn.resetPassword {
    width: 100%;
    margin-top: 25px;
}

.chkRememberMe {
    text-align: left;
}

.inputIcon i {
    color: #ccc;
}

.passwordForget {
    color: #f9f9f9;
    text-decoration: none;
}

    .passwordForget:hover {
        text-decoration: underline;
        cursor: pointer;
        transition: var(--ButtonTransition);
    }

    section#loginFormInputs div.form-check label:hover {
        cursor: pointer;
    }

.form-group.forgotPassword {
    margin-top: 15px;
    text-align: center;
}

.form-group.forgotPasswordBack {
    margin-top: 25px;
    text-align: center;
}

#loginFormInputs .mat-mdc-form-field {
    width: 100%;
}

/* Header */

header {
    background: linear-gradient(195deg, rgb(66, 66, 74), rgb(25, 25, 25));
    display: flex;
    padding: 15px;
}
