﻿.mainContainer {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    width :100%;
    max-width : 100rem;
    margin:0px auto;
}


.blueTextClass {
    color: #01b0f1;
    font-style: italic;
}

.logoAndImageContainer {
    /* border: 2px solid red; */
    width: 60%;
    height: 100vh;
}

.loginFormContainer {
    /* border: 2px solid red; */
    width: 40%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    
}

#loginFormBox {
    width: 80%;
    height: 25rem;
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /* background-color: #F0F0F0;*/
    background-color: aliceblue;
}

.loginHeading {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 2rem;
}

#loginForm {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.employeeIdBox {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.employeePasswordBox {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.employeeIdBox input {
    width: 100%;
    padding: 8px 0px;
    border-radius: 4px;
    border: 1px solid #D6D3D0;
    padding: 10px 10px;
    box-sizing: border-box;
    font-family : 'Segoe UI'
}

.employeePasswordBox input {
    width: 100%;
    padding: 8px 0px;
    border-radius: 4px;
    border: 1px solid #D6D3D0;
    padding: 10px 10px;
    box-sizing: border-box;
    font-family: 'Segoe UI'
}

input ::placeholder {
    font-family: 'Segoe UI'
}

.employeeIdBox label {
    font-size: 16px;
    font-weight: 600;
}

.employeePasswordBox label {
    font-size: 16px;
    font-weight: 600;
}

.rememberContainer {
    display: flex;
    justify-content: space-between;
}

.rememberCheckBox {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8C8C8C;
    column-gap: 0.5rem;
}

    .rememberCheckBox input {
        transform: scale(1.2);
    }

#forgotPasswordBtn {
    color: #8C8C8C;
    cursor:pointer;
}

.formSubmitBtn {
    text-align: center;
    margin-top: 1rem;
}

    .formSubmitBtn input {
        width: 100%;
        border: none;
        color: white;
        background-color: #01B0F1;
        font-size: 18px;
        padding: 10px 0px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
    }

        .formSubmitBtn input:hover {
            background-color: #5FCDF6;
        }



/* logo box */

.logoAndImageContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logoAndTagLineBox {
    width: 80%;
    margin: 0px auto;
}

.riseLogo {
    width: 13rem;
}

.gradient-div {
    width: 90%;
    height: 10px;
    background: linear-gradient(to right, #01B0F1, white);
    margin-top: 10px;
}

.tagLine {
    font-size: 16px;
    font-weight: 600;
    margin-top: 1rem;
}


.imageAnimationContainer {
    width: 240rem;
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    z-index: -1;
}

.imageWrapper {
    display: flex;
    animation: scroll 30s linear infinite;
    align-items: center;
}

    .imageWrapper img {
        width: 150px;
        height: auto;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* change pass word form */


#changePasswordFormBox {
    width: 80%;
    height: 35rem;
    /* border: 2px solid red; */
   /* background-color: white;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
}

.changePasswordHeading {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 2rem;
}

#changePasswordForm {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

