body {
    background-image: url(../../images/bg.png) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Roboto", sans-serif !important;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff47;
    z-index: -1;
}

/* For Responsiveness */

@media (max-width: 430px) {
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 107%;
        background-color: #ffffff47;
        z-index: -1;
    }
}

@media (max-width: 375px) {
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 158%;
        background-color: #ffffff47;
        z-index: -1;
    }
}

/* For Responsiveness End */

.container {
    background-color: rgba(0, 0, 0, 0.3);
}

.logo {
    /* width: 20% !important; */
}

.login-container {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 20px;
    /* border-radius: 10px; */
}

.title {
    font-size: 1.5rem;
    color: #000;
    font-weight: 400;
    position: relative;
    padding: 10px;
}

.title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 60px;
    height: 1px;
    border-bottom: solid 3px #0d427c;
}

.welcome p {
    font-size: 1rem;
    font-weight: 400;
}

.username-cont, .password-cont{
    padding-left: 30px;
}

.username-input {
    border: none;
    outline: none;
    /* width: calc(100% - 37px); */
    width: 100%;
    padding: 0.5rem !important;
    padding-left: 1.7rem !important;
}

.username-icon {
    position: relative;
    /* left: 31px; */
    top: 32px;
    z-index: 2;
}

.password-cont {
    position: relative;
}

.password-input {
    border: none;
    outline: none;
    /* width: calc(100% - 37px); */
    width: 100%;
    padding: 0.5rem !important;
    padding-left: 1.7rem !important;
}

.password-icon {
    position: relative;
    /* left: 31px; */
    top: 31px;
    z-index: 2;
}

.username-input:focus,
.password-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(28, 119, 195, 0.25);
    transition: 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 3px;
}

.show-hide-pass {
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 32px;
}

.error-msg .alert{
    height: 50px !important;
    margin-left: 5px;
    display: flex;
    padding: 13px;
}

.lgn-btn {
    border: none;
    outline: none;
    width: 92%;
    margin-left: 1.9rem !important;
    border-radius: 0px !important;
    background-color: #0d427c !important;
    border-color: #0d427c !important;
}

.lgn-btn:hover {
    background-color: #093059 !important;
}

.lgn-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 94, 144, 0.5);
}

.input-fields {
    box-shadow: 7px 7px 5px 0 rgba(0, 0, 0, 0.2);
}

.forgetpass {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 300;
}

.google-lgn label {
    font-size: 1.4rem;
    font-weight: 500;
    font-style: normal;
}

.google-button {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    /* text-transform: uppercase; */
    vertical-align: middle;
    align-items: center;
    /* border-radius: 0.5rem; */
    border: none;
    gap: 0.75rem;
    color: rgb(65, 63, 63);
    background-color: #4285f4;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.google-button svg {
    height: 24px;
}

.google-button:hover {
    /* transform: scale(1.02); */
    background-color: #1e6ef2;
}

.google-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 94, 144, 0.5);
}

.footer {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}
