﻿* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #2c97b3;
    --active-color: #00c5b2;
    --white-color: #ffffff;
    --black-color: #000000;
    --disable-color: #e2e2e2;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: start;
    justify-content: center;
}

.login-Container {
    margin-inline: auto;
    max-width: 1280px;
    overflow: hidden;
    padding-inline: 15px;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.sign-box {
    display: block;
    width: 700px !important;
    min-height: 450px;
    background-color: #fff;
    box-shadow: 0px 2px 30px #ccc6;
    margin: auto;
    position: relative;
    z-index: 1;
    margin-top: 7%;
    overflow: hidden;
    border-radius: 40px;
}

.sign-left {
    width: 100%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    padding: 50px 50px;
    border-radius: 2px;
    transition: all .1s ease-in-out;
    overflow-y: auto;
    position: relative;
}
.sign-logo {
    display: flex;
    justify-content: center;
    img

{
    width: 200PX;
}

}


.signin_head {
    margin-bottom: 30px;
    line-height: 30px;
    h2{
          font-weight:900;
          color: var(--primary-color);
      }
}

.service_name {
    line-height: 28px;
}

.service_name {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.sign-input {
    height: 44px;
    box-sizing: border-box;
    outline: none;
    background: #f8f8f8 !important;
    border: 1px solid #E4E4E4 !important;
}

.sign-btn {
    background: var(--primary-color) !important;
    border: none !important;
    color: var(--white-color) !important;
}
.sign-link{
    color: var(--primary-color);
    text-decoration: none;
}
.password-icon {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    color: var(--icon-color);
}


@media (min-width: 600px) and (max-width: 1024px) {
    .sign-box {
        width: 500px !important;
        box-shadow: none;
        margin: 0px auto;
        position: relative;
        z-index: 1;
        margin-top: 7%;
        overflow: hidden;
    }
}

@media only screen and (max-width: 600px) {
    .sign-box {
        width: 100% !important;
        box-shadow: none;
        margin: 0px auto;
        position: relative;
        z-index: 1;
        margin-top: 40px;
        height: auto;
        overflow: hidden;
    }

   

    .sign-left {
        width: 100%;
        height: auto;
        margin: 0px auto;
        border: none;
    }
}



.h-40 {
    height: 40px !important;
}

