﻿.imgCustom200pxBox {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 200px;
    text-align: center;
}

.imgCustom200pxCircle {
    border: 1px solid #ddd;
    padding: 5px;
    width: 200px;
}
/* #1572A1 2A2550 */
.DMSRootColor {
    background: #0081C9;
    color: white;
}

.login-container {
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 5%;
}

    .login-container form {
        padding: 1%;
    }

.login-form-1 {
    padding: 5%;
}

    .login-form-1 h3 {
        text-align: center;
        color: #fff;
    }

    .login-form-1 .ForgetPwd {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

.login-form-2 {
    padding: 5%;
    background: #013974;
    box-shadow: 10px 10px 8px 0 rgb(255 255 255), 0 9px 20px 20px white;
}

    .login-form-2 h3 {
        text-align: center;
        color: #fff;
    }

    .login-form-2 label {
        color: #fff;
    }

    .login-form-2 span {
        background-color: white;
    }

    .login-form-2 p {
        color: white;
    }

    .login-form-2 a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

    .login-form-2 .btnSubmit {
        font-weight: 600;
        color: #590696;
        background-color: #fff;
        border-radius: 0rem;
        border: none;
        cursor: pointer;
    }
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Iowan Old Style',Arial, sans-serif;
}

/* Background Image */
body {
    /* background: url('bg_pattern.png') center center;*/
    background: url('../images/bg_pattern.png') center center;
    background-repeat: repeat; /* Tile the background image */
    background-size: auto; /* Keep the original pixel dimensions */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    opacity: 90%;
    background-color: rgba(238, 238, 238, 0.8);
}

/* Container */
.container {
    display: flex;
    width: 900px;
    height: 540px;
    border-radius: 25px;
    overflow: hidden;
    opacity: 98%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    /* Centering */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Blue Section */
.left-panel {
    background-color: #0D47A1;
    color: white;
    width: 510px;
    height: 100%; /* Ensure it spans the full height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    box-sizing: border-box; /* Ensure padding doesn't affect size */
    margin-left: -20px; /* Shift the panel slightly to the left */
    position: relative; /* Ensures it can be shifted properly */
}

    .left-panel h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .left-panel img.logo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        background-color: white;
        border-radius: 50%;
    }

    .left-panel p {
        margin-bottom: 20px;
    }

/* Form Elements */
.form-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    margin: 10px 0;
    margin-left: -50px;
    padding: 10px;
    width: 150%;
    height: 45px; /* Adjust height of the input box */
}

    .form-input img {
        width: 25px;
        margin-right: 10px;
    }

    .form-input input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 1rem;
    }

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    margin: 10px 0;
    margin-left: -70px;
    padding-left: 28px;
}

    .checkbox-container input {
        width: 15px;
        height: 15px;
        margin-right: 8px;
        accent-color: #F57C00;
    }

    .checkbox-container label {
        font-size: 0.9rem;
        color: white;
        margin-top: 10px;
    }

/* Button */
.sign-in-btn {
    background-color: #F57C00;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    width: 90%;
    height: 45px;
    text-align: center;
    margin-top: 10px;
    margin-left: 20px;
    position: relative; /* Ensures it can be shifted properly */
    overflow: hidden; /* Prevent overlay from spilling out */
}
/* Ensure overlay matches button shape */
.loadingoverlay {
    border-radius: 25px !important; /* Match button's border-radius */
    overflow: hidden !important; /* Clip the overlay to the button bounds */
    width: 100%; /* Match button's width */
    height: 100%; /* Match button's height */
}


/* Orange Section */
.right-panel {
    background-color: #F57C00;
    color: white;
    width: 410px;
    height: 100%; /* Ensure it spans the full height */
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding doesn't affect size */
    margin-right: -60px; /* Shift the panel slightly to the right */
    position: relative; /* Ensures it can be shifted properly */
}

    .right-panel h2 {
        font-size: 1.5rem;
        text-align: justify;
        margin: 0;
        margin-top: 30px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .right-panel p {
        line-height: 1.6;
    }

