﻿*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0 !important;
    overflow-y: clip;
    background-color: #f2f2f2;
}

.text-red {
    color: #e01b22;
}

.container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.card {
    margin-top: 50px;
    margin-bottom: auto;
    width: 400px;
    background-color: #f7f7f7;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: #f7f7f7;
    border-bottom: none;
}

.card-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
    color: #e01b22;
}

.card-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    padding-left: 15px;
}

.form-control {
    border-radius: 20px;
    border: 2px solid #e01b22;
    padding: 10px;
    max-width: 350px !important;
}

.btn {
    border-radius: 20px;
    /*font-weight: bold;*/
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
}



.btn-register,
.btn-login {
    background-color: #e01b22;
    color: #fff;
    border: 2px solid #e01b22;
    /*font-weight: bold;*/
}

    .btn-register:hover,
    .btn-login:hover {
        background-color: #fff;
        color: #e01b22;
        border-radius: 20px;
        border: 2px solid #e01b22;
    }


.forgot-password-link {
    display: block;
    text-align: left;
    margin-top: 10px;
    color: #e01b22;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

    .logo img {
        width: 20%;
        /* height: 10%; */
    }

footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    background-color: #e01b22;
    color: #fff;
    padding: 15px 0px;
    z-index: 9999;
}

.mb-9 {
    margin-bottom: 9rem;
}

/*Login Page ends*/
.card .form-control:focus {
    border-color: #e01b22 !important;
    outline: 0;
    box-shadow: unset !important;
}


.forgot-password-link {
    display: block;
    text-align: left;
    margin-top: 10px;
    color: #e01b22;
    text-decoration: none;
    font-size: 14px;
}

    .forgot-password-link:hover {
        text-decoration: underline;
    }


.nav-link {
    color: black;
}

    .nav-link:hover {
        color: #e30d0d;
        border-left-color: #e30d0d !important;
        border-right-color: #e30d0d !important;
        border-top-color: #e30d0d !important;
        border-bottom-color: white !important;
    }

.nav-tabs {
    --bs-nav-tabs-link-active-color: #e30d0d;
    border-color: #e30d0d;
}



    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #e30d0d;
        background-color: var(--bs-nav-tabs-link-active-bg);
        border-left-color: #e30d0d;
        border-right-color: #e30d0d;
        border-top-color: #e30d0d;
    }

    span.field-validation-error {
        color: red;
    }

.req {
    color: red;
    font-weight: 700;
    font-size: 13px;
    margin-top: -3px;
    vertical-align: middle;
    margin-left: 4px;
}
   