﻿

body {
    min-height: 100%;
    background-color: #F7F5F3;
    display: flex;
    justify-content: stretch;
    align-items: center;
}

h1 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #00328f;
}

input, span, label, button, a {
    color: #554A3D;
}

a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    /*flex*/
    display: flex;
    justify-content: flex-end;
}

fieldset {
    border: none;
    /*flex*/
    display: flex;
    flex-direction: column;
}

label {
    font-size: 18px;
    font-weight: 600;
}

fieldset input:first-of-type {
    margin: 8px 0px 30px;
}

input {
    width: 100%;
    height: 40px;
    border: none;
    background-color: #d4e0ed;
    border-radius: 10px;
    /*flex*/
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    width: 192px;
    height: 48px;
    border: none;
    background-color: transparent;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 20px;
    border-radius: 10px;
}

.left {
    width: 35%;
    padding: 24px;
}

.right {
    width: 65%;
    height: 100vh;
    background-image: url('../img/employeebg.png');
    /*background-image: url('../img/vendor-management4.jpg');*/
    background-size: cover;
    background-position: center;
}

.primaryBtn {
    color: #F7F5F3;
    background-color: #00328f;
    margin: 30px auto 20px;
}

    .primaryBtn:hover {
        background-color: #26b0f9;
    }

.separator {
    width: 100%;
    height: 1px;
    margin: 0px auto 30px;
    background-color: #BBB4A7;
}

span {
    font-size: 18px;
    font-weight: 700;
    /*flex*/
    display: flex;
    justify-content: center;
}

.secondaryBtn {
    color: #00328f;
    border: 1px solid #00328f;
    margin: 8px auto;
}

    .secondaryBtn:hover {
        color: #26b0f9;
        border-color: #26b0f9;
    }

@media (max-width: 425px) {

    body {
        display: block;
    }

    .left {
        width: 100%;
        padding: 24px;
    }

    .right {
        width: 100%;
        height: 100vh;
        background-image: url('../img/CustomerBg.jpg');
        /*background-image: url('../img/vendor-management4.jpg');*/
        background-size: cover;
        background-position: center;
    }
}
