html {
    font-size: 18px !important;
    font-family: Roboto, Open Sans, Tahoma, Verdana, Arial, sans-serif !important;
}

@import 'css3.css';

* {
    margin: 0;
    padding: 0;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #000;
}

body {
    position: relative;
    height: 100%;
    background: #f9f9f9;
    font-family: Roboto, Open Sans, Tahoma, Verdana, Arial, sans-serif !important;
}

img {
    border: 0;
    width: 360px;
}

.logo {
    margin: 20px auto;
}

.bg-primary {
    background-image: url(../Images/login-bg-new28092024.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    overflow: hidden;
    margin: 0 auto;
}

.customSeal {
    padding: 0;
    margin: 0;
}

    .customSeal img {
        width: 112px;
    }

.AuthorizeNetSeal img {
    width: 92px;
}

#container {
    width: 460px;
    margin: 5% auto;
    text-align: center;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(.2rem);
    border-radius: 30px;
    box-shadow: 0 20px 50px 0 #000;
}

    #container .logo {
        width: 260px;
        margin: 25px auto 0;
    }

    #container #header {
        color: #fff;
        padding: 15px;
        position: relative;
        border-radius: 25px 25px 0 0;
        background-image: linear-gradient(to bottom right, #000, #333);
    }
        #container #header span {
            color: #FFF;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1;
            font-family: Roboto, Open Sans, Tahoma, Verdana, Arial, sans-serif !important;
        }

    #container #box {
        clear: both;
        float: none;
        width: 400px;
        margin: 10px auto;
    }

.main {
    margin: 0;
    padding: 5px 0;
    font-size: 18px !important;
}
.tooltip {
    font-size: 18px !important;
}
p.main label {
    float: left;
    padding: 5px 0 10px 0;
    display: inline;
    margin-left: 20px;
    font-size: 14px;
    color: #555;
    margin-right: 0;
    /*border-bottom: 1px solid #ececec;*/
    text-transform: uppercase;
    letter-spacing: .5px;
    /*background: linear-gradient(#fff, #ececec);*/
}
#box p {
    clear: both;
    float: none;
    width: 100%;
}
#box table {
    margin: 8px auto;
}
.black {
    font-size: 16px;
}
.loginTitle {
    text-transform: uppercase;
    font-weight: 500 !important; 
    font-size: 18px !important;
    letter-spacing:1px !important;
}
.loginTextBox {
    background-color: #FFF !important;
    border: 1px solid #000;
    color: #000 !important;
    padding: 10px 15px;
    float: left;
    width: 360px;
    font-size: 16px;
    border-radius: 30px;
    height: 32px;
}

    .loginTextBox:focus {
        border: 1px solid #000;
        transition: .3s;
        background-color: #fff !important;
        box-shadow: none;
    }

    .loginTextBox:focus-visible {
        border: 1px solid #000;
        transition: .3s;
    }

.loginButton {
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #614e25;
    border: 1px solid #614e25;
    display: inline;
    border-radius: 30px;
    width: 390px;
    padding: 0;
    height: 54px;
}

    .loginButton:hover {
        transition: .3s;
        border: 1px solid #af872d;
        background-color: #af872d;
        color: #FFF;
    }

span {
    font-size: 16px;
    color: #fff;
}

.space {
    padding-top: 15px;
}

span input {
    margin-left: 125px;
    margin-right: 5px;
    border: 1px solid #111;
    background: #444;
    color: #fff;
}

.modalBackground {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.loginFooter {
    padding: 10px 25px;
    background-color: #000;
    width: 400px;
    bottom: 10px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 20px 50px 0 #000;
}
    .loginFooter img {
        filter: grayscale(1) invert(1);
    }
    .loginFooter img:hover {
        filter: grayscale(0) !important;
        transition: .3s;
    }
    .loginFooter td {
        vertical-align: middle;
    }

.mb-1 {
    margin-bottom: 5px !important;
}