:root {
    --color-primary: #00CCCC;
    --color-secondary: #f15a22;
}

* {
    box-sizing: border-box;
    outline: none;
}

html,
body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 100%;
    color: #2c3e51;
    /* background-color: #e6e1e179; */
    background-image: url("../../assets_pos/images/bg.png");
    background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional - this keeps the background fixed while scrolling */
  background-position: center center;
    font-family: 'Montserrat', sans-serif;
    
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: var(--color-secondary);
}

.box-shadow {
    box-shadow: 0px 2px 5px 0px rgba(155, 155, 155, 0.5);
}


.error {
    color: #F44336;
}


.container {
    width: 100%;
    height: 100%;
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top:0px;
    margin-bottom:10px;
}

.card {
    position: relative;
    margin: auto;
    border-radius: 5px;
    background-color: #1518ae;
    /*width: 380px;*/
    width: 340px;
    padding: 16px 32px;
    box-shadow: 3px 3px 15px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;    
}

    .card:focus, .card:hover {
        box-shadow: 1px 1px 4px 3px rgba(0,0,0,0.2);
    }

    .card .logo {
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

@media screen and (max-width: 408px) {
    .main {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
    }


    .card {
        width: auto !important;
        margin: 100px 8px !important;
    }
}

.logo {
    display: block;
    background-image: url("../../assets_pos/images/logo.png");
    background-repeat:no-repeat;
    background-size: 100%;
    width: 110px;
    height: 110px;
    font-size: 5rem;
    text-align: center;
    color: #fff;
    background-color: var(--color-primary);
   /* background: var(--color-primary);*/
    border-radius: 50%;
    box-shadow: 0px 0px 2px 2px rgba(16, 16, 16, 0.5);
    transition: all 0.3s ease;
}

    .logo:hover {
        transform: scale(1.02);
    }

    .logo div {
        width: 100%;
        height: 1rem;
    }

.card-head {
    padding: 48px 0 0px;    
    text-align:center;
}

    .card-head .header {
        font-size: 22px;
        font-weight: 500;
        display: inline-block;
        margin: 20px 0px;
        color: #fff;
    }

.card-body {
    display: block;
    position: relative;
    color: #fff;
}

form {
    display: block;
    margin-top: 0em;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-label {
    font-weight: 400;
    display: block;
    font-size: 16px;
    color: #282828;
    margin-bottom: 8px;
    color: #fff;
}

.form-control {
    font-size: 14px;
    color: #282828;
    border-radius: 3px;
    box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #bbb;
    padding: 8px;
    display: block;
    width: 100%;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
}

    .form-control:focus, .form-control:hover {
        outline: 0 none;
        -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.075);
        border-color: var(--color-primary);
    }

.btn {
    display: inline-block;
    padding: 10px 16px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #fff;
    background-color: var(--color-primary);
    height: 40px;
    width: 100%;
    box-shadow: 2px 2px 3px 0px rgba(101, 101, 101, 0.4);
    font-weight:600;
    text-transform:uppercase;
}


    .btn:hover, .btn:focus {
        background-color: #00a3a3 !important;
    }

.form-group .btn {
    margin-top: 2rem;
}

.card-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
}

    .card-footer > span {
        margin-bottom: 1rem;
        font-size:14px;
        color:#958f8f;
    }

        .card-footer > span > a:hover {
            transition: all 0.5s ease;
            text-decoration: underline;
        }
