/* Base */

*
{
    margin: 0;
    padding: 0;
}

h1
{
    text-align: center;
    margin-top: 20px;
}


body
{
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #994bb3;
    --secondary-color: #0a1b1b;
    --background-color: #fbfef9;
    --gray-color: #8d8e8e;
    --light-gray-color: #a5b2b9;
    --passive-color: #f4f0fa;
}

/* Login Page */

html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fff !important;
}

.form_container {
    margin-top: 100px;
}

.login_btn {
    width: 100%;
    background: #7a8c9e !important;
    color: white !important;
}

.login_btn:hover {
    width: 100%;
    background: #589158 !important;
    color: white !important;
}

.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.login_container {
    width: 100%;
}

.input-group-text {
    background: #657685 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.input_user,
.input_pass {
    font-size: 14.5px;
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #c0392b !important;
}

#formFooter {
    background-color: #f6f6f6;
    padding: 5px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    width: 106%;
    margin-bottom: -45px;
    margin-left: -10px;
}

.fullstop {
    color: var(--primary-color);
    margin-left: -10px;
}

.primary-heading {
    font-weight: 600;
    font-size: 2rem;
    text-align: left;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    margin-bottom: 220px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 5px;
}


.secondary-heading{
    color: var(--light-gray-color);
    font-weight: 600;
    font-size: 1rem;
}