﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif !important;
    overflow: hidden; /* Prevent scrolling */
}

.form-control {
    font-size: 14px !important;
}

.backgroundDiv {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

#video-background {
    opacity:30%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire area */
}

.content {
    position: relative;
    z-index: 1;
    height: 100%; /* Ensure content fills the entire viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}

input::placeholder {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: semi-bold;
    color: black;
}

.textRem {
    font-size: 14px;
    font-weight: 500;
    /* font-size: 15px; */
    letter-spacing: 0.5px;
    color: #8d8d8d;
}


a {
    text-decoration: none;
    color: rgb(28, 161, 122);
    font-weight: 500;
    font-size: 12px;
    font-weight: 600;
    /* font-size: 15px; */
    letter-spacing: 0.5px;
}

    a:hover {
        color: blue;
    }

.btnLogin {
    width: 180px;
    margin-top: -15px;
    height: 35px;
    background-color: #007E7A;
    border-color: #007E7A;
    /* box-shadow: 5px 5px 5px 5px; */
    box-shadow: 0 8px 8px 0 rgba(145, 145, 145, 0.2), 0 6px 6px 0 rgba(133, 133, 133, 0.2);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

    .btnLogin:hover {
        background-color: #007E7A;
        border-color: #007E7A;
    }

    .btnLogin:disabled {
        background-color: #007E7A;
        border-color: #007E7A;
    }

i {
    color: #ECB11F;
}

.loginTitle {
    font-size: 14px;
    font-weight: 600;
    color: #007E7A;
    letter-spacing: 0.5px;
    text-align: center;
}

.ErrorMsg {
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}
