@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --first-color: #12192c;
    --text-color: #8590ad;
    --body-font: 'Roboto', sans-serif;
    --big-font-size: 2rem;
    --normal-font-size: .938rem;
    --smaller-font-size: .875rem;
}

@media screen and (min-width: 768px) {
     :root {
        --big-font-size: 2.5rem;
        --normal-font-size: 1rem;
    }
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    color: var(--first-color);
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
}


 img {
    max-width: 100%;
    height: auto;
} 

.l-form {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.shape1,
.shape2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.shape1 {
    top: -7rem;
    left: -3.5rem;
    background: linear-gradient(180deg, var(--first-color) 0%, rgba(196, 196, 196, 0) 100%);
}

.shape2 {
    bottom: -6rem;
    right: -5.5rem;
    background: linear-gradient(180deg, var(--first-color) 0%, rgba(196, 196, 196, 0) 100%);
    transform: rotate(180deg);
}

.form {
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.form-content {
    width: 290px;
}

.form-img {
    display: none;
}

.form-title {
    font-size: var(--big-font-size);
    font-weight: 500;
    margin-bottom: 2rem;
}

.form-div {
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin-bottom: 1rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--text-color);
}

.form-div.focus {
    border-bottom: 1px solid var(--first-color);
}

.form-div-one {
    margin-bottom: 3rem;
}

.form-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: .3s;
}

.form-div.focus .form-icon {
    color: var(--first-color);
}

.form-label {
    display: block;
    position: absolute;
    left: 0.75rem;
    top: 0.25rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    transition: .3s;
}

.form-div.focus .form-label {
    top: -1.5rem;
    font-size: .875rem;
    color: var(--first-color);
}

.form-div-input {
    position: relative;
}

.form-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem .75rem;
    font-size: 1.2rem;
    color: var(--first-color);
    transition: .3s;
}

.form-forgot {
    display: block;
    text-align: right;
    margin-bottom: 2rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-weight: 500;
    transition: .5s;
}

.form-forgot:hover {
    color: var(--first-color);
}

.form-button {
    width: 100%;
    padding: 1rem;
    font-size: var(--normal-font-size);
    outline: none;
    border: none;
    margin-bottom: 3rem;
    background-color: var(--first-color);
    color: #fff;
    border-radius: .5rem;
    cursor: pointer;
    transition: .3s;
}

.form-button:hover {
    box-shadow: 0px 15px 36px rgba(0, 0, 0, .15);
}

.form-social {
    text-align: center;
}

.form-social-text {
    display: block;
    font-size: var(--normal-font-size);
    margin-bottom: 1rem;
}

.form-social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    padding: 0.5rem;
    background-color: var(--text-color);
    color: #fff;
    font-size: 1.25rem;
    border-radius: 50%;
    transition: .5s;
}

.form-social-icon:hover {
    background-color: var(--first-color);
}

@media screen and (min-width: 968px) {
    .shape1 {
        width: 400px;
        height: 400px;
        top: -11rem;
        left: -6.5rem;
    }
    .shape2 {
        width: 300px;
        height: 300px;
        right: -6.5rem;
    }
    .form {
        grid-template-columns: 1.5fr 1fr;
        padding: 0 2rem;
    }
    .form-content {
        width: 320px;
    }
    .form-img {
        display: block;
        width: 700px;
        justify-self: center;
    }
}


/*------------ Login Page END -----------*/

.header_title {
    text-align: center;
    padding: 15px 0px 15px 0px;
}

.main_box {
    text-align: left;
    padding-left: 40px;
}

.u_name {
    font-size: 20px;
}

.u_input {
    margin: 15px 0px;
    padding: 10px 10px;
    outline: none;
    border-radius: 8px;
    width: 30%;
    border: 1px solid #574e4e61;
    /* background-color: #6df6b73d; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.btn_crt {
    margin: 0px 0px;
    padding: 14px 32px;
    border-radius: 10px;
    background-color: green;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.5s;
}

.btn_crt:hover {
    background-color: #008000bd;
}

.mail_dtl {
    width: 100%;
    margin: 10px 0px;
    padding: 5px 10px;
    outline: none;
    border-radius: 8px;
    border: 1px solid #574e4e61;
    /* background-color: #6df6b73d; */
}

.btn_asst {
    background-color: #8590ad;
}


/*----*logout icon------*/

.logout_icon {
    font-size: 27px;
    cursor: pointer;
    color: #fd1d1d;
}


/***-------------------*/

.hlp_con {
    display: inline-block;
}

.help_img {
    display: inline-block;
    width: 100px;
    height: 100px;
}

.help_satya_img {
    width: 110px;
    height: 110px;
    vertical-align: baseline;
    border-radius: 15px;
}

.help_info {
    display: inline-block;
    margin-left: 20px;
    vertical-align: top;
}
/*----------- Hembar menu----------------*/
#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 48px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 5px; */
    transition-duration: .5s;
}

.bars {
    width: 60%;
    height: 4px;
    background-color:black;
    border-radius: 4px;
}

#bar2 {
    transition-duration: .8s;
}

#bar1,
#bar3 {
    width: 75%;
}

#checkbox:checked+.toggle .bars {
    position: absolute;
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar1 {
    width: 60%;
    transform: rotate(45deg);
    transition-duration: .5s;
}

#checkbox:checked+.toggle #bar3 {
    width: 60%;
    transform: rotate(-45deg);
    transition-duration: .5s;
}

#checkbox:checked+.toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
}


/*------------------------------------*/

@media (max-width: 768px) {
    .u_input {
        width: 100%;
    }
}

@media(max-width:575px) {
    .header_title {
        font-size: 25px;
    }
    .admin_satya_img {
        width: 100%;
    }
}

@media (max-width:425px) {
    .admin_satya_img {
        width: 100%;
    }
}