@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --P_light: #F7F9FF;
    --L_light-balck: #012970;
    --pure: #ffffff;
    --light-black: #676767;
    --primary: #4154F1;
    --black: #1A2130;
    --height-btn: 2.25rem;
    /* 3rem * 0.75 */
    --f-weight: 525;
    /* 700 * 0.75 */
}

/* Width of the scrollbar */
/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 0px;
    /* Smaller width */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
    background-color: #e0e0e0;
    /* Lighter background color */
    border-radius: 10px;
}

/* Thumb of the scrollbar */
::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    /* Lighter thumb color */
    border-radius: 10px;
}

/* Thumb hover state */
::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a0;
    /* Slightly darker on hover */
}

/* Mobile styles - hide scrollbar */
@media (max-width: 767px) {

    /* Hide scrollbar for WebKit-based browsers on mobile */
    ::-webkit-scrollbar {
        width: 0;
        /* Hide scrollbar */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Nunito';
    font-size: 0.75rem;
    /* 1rem * 0.75 */
    font-weight: 300;
    /* 400 * 0.75 */
    line-height: 1.125;
    /* 1.5 * 0.75 */
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow: hidden;
    /* Prevent scrolling */
}

.container {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100vh;
    /* 100vh * 0.75 */
    max-width: 100vw;
}

.right {
    flex: 1;
    /* width: 32.25%; 43% * 0.75 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75%;
    /* 5% * 0.75 */
    padding-right: 4.5%;
    /* 6% * 0.75 */
}

.left {
    /* width: 42.75%; 57% * 0.75 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /* 20px * 0.75 */
}

.left {
    background-color: var(--P_light);
    height: 100vh;
}

.left img {
    max-width: 51%;
    /* 68% * 0.75 */
    height: auto;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    /* 20px * 0.75 */
}

.info h2 {
    font-size: 125%;
    /* 167% * 0.75 */
    margin-bottom: 7.5px;
    /* 10px * 0.75 */
}

.info p {
    font-size: 12.75px;
    /* 17px * 0.75 */
    color: var(--light-black);
    max-width: 42%;
    /* 56% * 0.75 */
}

.form-container {
    width: 100%;
    max-width: 19.5rem;
    /* 26rem * 0.75 */
}

.frm-label {
    font-weight: var(--f-weight);
    color: var(--light-black);
}

::placeholder {
    padding-left: 1.5%;
    /* 2% * 0.75 */
    font-weight: 375;
    /* 500 * 0.75 */
    font-size: 0.75rem;
    /* Medium size adjusted */
    color: #2B2D42;
}

.form-grp {
    float: left;
    width: 100%;
}

.logo {
    padding-top: 2.25%;
    /* 3% * 0.75 */
    width: 75%;
    /* 100% * 0.75 */
    max-width: 15rem;
    /* 20rem * 0.75 */
    margin-bottom: 6.75%;
    /* 9% * 0.75 */
}

p {
    font-size: 12px;
    /* 16px * 0.75 */
    color: #666;
    margin-bottom: 15px;
    /* 20px * 0.75 */
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    width: 100%;
    text-align: left;
    margin-bottom: 3.75px;
    /* 5px * 0.75 */
    font-size: 10.5px;
    /* 14px * 0.75 */
    color: #333;
}

input {
    width: 100%;
    height: var(--height-btn);
    margin-bottom: 11.25px;
    /* 15px * 0.75 */
    border: 1px solid #ccc;
    border-radius: 9px;
    /* 12px * 0.75 */
    font-size: 10.5px;
    /* 14px * 0.75 */
    padding-left: 7.5px;
    /* 10px * 0.75 */
}

.forgot-password {
    font-weight: var(--f-weight);
    text-align: right;
    width: 100%;
    margin-bottom: 15px;
    /* 20px * 0.75 */
    color: var(--primary);
    text-decoration: none;
}

.sign-in,
.google-login {
    font-weight: 525;
    /* 700 * 0.75 */
    font-family: 'nunito';
    width: 100%;
    height: var(--height-btn);
    margin-bottom: 7.5px;
    /* 10px * 0.75 */
    border: none;
    border-radius: 9px;
    /* 12px * 0.75 */
    font-size: 13.5px;
    /* 18px * 0.75 */
    cursor: pointer;
}

.hand-wave {
    width: 1.125rem;
    /* 1.5rem * 0.75 */
    height: auto;
}

.btn-color {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-color:hover {
    background-color: var(--L_light-balck);
}

.signup {
    font-size: 13.5px;
    /* 18px * 0.75 */
    color: #666;
    padding: 1.5rem 0 0 0;
    /* 2rem * 0.75 */
    font-weight: 450;
    /* 600 * 0.75 */
}

.signup a {
    color: var(--primary);
    text-decoration: none;
}

.google-login {
    display: flex;
    align-items: center;
    padding: 7.5px 15px;
    /* 10px 20px * 0.75 */
    border: 1px solid #ccc;
    border-radius: 9px;
    /* 12px * 0.75 */
    background-color: #fff;
    font-size: 15px;
    /* 20px * 0.75 */
    color: var(--light-black);
    font-weight: 525;
    /* 700 * 0.75 */
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    width: 100%;
}

.google-login img {
    width: 1.5rem;
    /* 2rem * 0.75 */
    margin-right: 7.5px;
    /* 10px * 0.75 */
}

.heading-frm {
    max-width: 20.25rem;
    /* 27rem * 0.75 */
}

.heading-frm h2 {
    color: var(--black);
}

.heading-frm p {
    text-align: left;
    border: none;
    color: var(--L_light-balck);
    padding-bottom: 0.35rem;
    padding-top: 0.35rem;
    font-weight: 450;
    /* 600 * 0.75 */
}

input {
    font-weight: 600 !important;
    color: var(--black);
    /* font-size: 1rem !important; */
    font-family: 'nunito';
    font-size: 0.75rem;
}



.current-user {

  text-align: center;
}

.logged-user-name {
  font-size: 11px;
  color: #6c757d;
  font-weight: 500;
  display: block;
}

