.breadcrumbs-area {
    display: none;
}

.navbar {
    display: none !important;
}

.space {
    display: none !important;
}

.footer  {
    display: none !important;
}

.full-body {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.left-body {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.right-body {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.login-big-logo {
    height: 360px;
    width: 360px;
}

.login-normal-logo {
    height: 180px;
    width: 180px;
}

.input-line {
    background-color: var(--input-bg);
    border-radius: 20px;
}

.input-line input {
    height: 40px;
    flex-grow: 1;
    background-color: rgba(0,0,0,0);
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.input-line div {
    height: 40px;
    width: 60px;
    background-color: var(--blue-color);
    border-radius: 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forget-pass {
    width: 100%;
    text-align: end;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-top {
    display: none !important;
}

@media only screen and (max-width: 1230px) {
    .full-body {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 300px;
    }

    /* .left-body {
        width: 100%;
        height: auto;
    } */


    .mobile-menu-bg {
        display: none;
    }
    #nav_logo_2 {
        display: none;
      }
  
      .login-normal-logo {
        margin-top: 50px;
      }


    .left-body {
        display: none;
      }

    .right-body {
        width: 100%;
        height: auto;
    }

    .login-big-logo {
        height: 250px;
        width: 250px;
    }

    /* .mobile-menu {
        display: none;
    } */
}