﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size:12px;
}

* {
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: default;
}

body {
    background: url(../images/login-bg.svg) #f2f2f2;
    color: #000000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-wrapper {
    width: 450px;
    max-width: 90%;
    margin: 20px auto;
}

.box {
    width: 100%;
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0px 3px 10px 1px rgb(204 204 204 / 90%);
}

.boxtop {
    background-color: #003580;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    padding: 12px 0;
}

.content {
    width: 100%;
    padding: 24px;
    padding-bottom: 10px;
}

.contentHeading  {
   text-align:center;
    margin: 0 0 15px;
}

.logo-wrap {
    text-align: center;
}

    .logo-wrap img {
        width: 125px;
        margin-bottom: 10px;
    }

.field {
    width: 100%;
    margin: 6px 0 15px;
    padding: 10px 6px;
    border-radius: 3px;
    outline: none;
    color: black;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #aaa;
}

.tdtext {
    color: #000000;
    font-weight: bold;
    font-size: 13px;
    margin: 0px;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #888;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #ffffff;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #ffffff;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #ffffff;
}

.btn--primary {
    background: #003580 !important;
    border: 1px solid #003580 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 4px 20px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px !important;
    height: 32px;
    outline: none;
}

    .btn--primary:hover {
        background: #032b63 !important;
        border: 1px solid #032b63 !important;
    }

.row-details {
    width: 100%;
    display: inline-block;
}

.text-right {
    text-align: right;
}


@media screen and (max-width: 767px){
    .login-wrapper {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
    .boxtop{
        font-size:12px;
    }
}