﻿.main_login {
    margin: 0 auto;
    max-width: 841px;
    align-items: center;
    display: flex;
    height: 100vh;
}

.login_inner {
    display: flex;
    padding: 20px;
    background: #fff url(../images/login_bg.png) 100% 0 no-repeat;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2
}
.admin_user .login_inner {
    background: #fff url(../images/login_bg2.png) 100% 0 no-repeat;
}


.login_inner > div {
    flex: 1;
}

.login_inner > div:last-child {
    color: #fff;
}

.form1 {
    padding: 125px 0;
}

.login_form > h2 {
    font-size: 24px;
    font-weight: 600;
}

.field_group > * {
    display: block;
}

.field_group a {
    color: #25a243;
}

.field_group p,
.field_group a {
    font-size: 12px;
}

.field_group > label {
    margin-bottom: 6px;
    text-transform: capitalize;
    text-align: left;
}

.field_group > input[type="text"],
.field_group > input[type="email"],
.field_group > input[type="password"],
.field_group > input[type="number"] {
    width: 100%;
    max-width: 290px;
    border: 1px solid #bfbfbf;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.field_group {
    max-width: 290px;
    text-align: center;
}

button.btn_submit {
    background: #393d54;
    display: block;
    width: 100%;
    border: 0;
    margin: 10px 0;
    padding: 8px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    transition: all ease .3s;
    cursor: pointer;
}
.admin_user button.btn_submit {
    background: #4059e3;
}

button.btn_submit:hover {
    background: #ff9800;
}

.login_body {
    background: #393d54;
    position: relative;
    width: 100%;
}
.login_body.admin_user {
        background: #4059e3;
    }

    .login_body::after {
    background: url(../images/body_bg.png) 100% 0 no-repeat;
    left: 0;
    bottom: 0;
    position: fixed;
    content: "";
    height: 224px;
    width: 717px;
    z-index: 1;
}
    .login_body.admin_user::after {
        background: url(../images/body_bg2.png) 100% 0 no-repeat;
    }
    .login_body.admin_user::before {
        background: url(../images/body_bg2.png) 100% 0 no-repeat;
    }
    .login_body::before {
    background: url(../images/body_bg.png) 100% 0 no-repeat;
    right: 0;
    top: 0;
    position: fixed;
    content: "";
    height: 224px;
    width: 717px;
    transform: rotate(180deg);
    z-index:1;
}
    

.hideform {
    display: none;
}

@media(max-width:750px){
    .login_inner {
     flex-flow:column wrap;
     flex:none;
     background:none;
     width:100%;
     box-shadow:none;
    }
    .login_inner > div:last-child{
     display:none;
     flex:none;
    }
    .login_inner > div{
     flex:none;
     width:100%
    }
    .field_group,
    .field_group > input[type="text"], .field_group > input[type="email"], .field_group > input[type="password"], .field_group > input[type="number"] {
        max-width: 100%;
    }
    .login_body {
        background: none;
    }
        .login_body::after, .login_body::before {
            height: 104px;
            width: 677px;
            opacity:.3;
        }
    .card_mainclass{ 
           justify-content:center !important;

    }
    .card_mainclass > div {
            margin-right: 0 !important;
            padding: 15px !important;
            margin-bottom: 15px !important;
        }
    table.table_edu div form {
        display: flex;
        flex-flow: column wrap;
    }
        table.table_edu div form > button {
            border: 1px solid;
            width: 110px;
            margin-top: 10px;
            color: #3f6ad8 !important;
            background: #fff !important;
        }
  
}

.add_amt_diary > div:first-child {
    text-align: right;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

    .add_amt_diary > div:first-child span {
        color: #3f6ad8;
        font-size: 36px;
        font-weight: normal;
    }

        .add_amt_diary > div:first-child span:before {
            content: "₹";
            font-size: 36px;
            color: #343a40;
            font-weight: normal;
        }

.add_amt_diary > div:nth-child(2) > * {
    display: block;
    width: 100%;
}

.add_amt_diary > div:nth-child(2) > label {
    color: #3f6ad8;
    font-weight: bold;
}

.add_amt_diary > div:nth-child(2) > input[type=number] {
    border: 1px solid #c3baba;
    padding: 5px 10px;
    font-size: 17px;
    margin-bottom: 16px;
}

