body {
    font: 90% / 1.5 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Helvetica, Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #5353ff;
    background: linear-gradient(45deg, #1b73e1, #00008b);
}

body {
    background-color: #00008b;
}

.box {
    position: relative !important;
    width: 380px !important;
    height: 565px !important;
    border-radius: 8px !important;
    background: #00008b !important;
    overflow: hidden !important;
    margin: 0 auto;
    padding: 35px;
    text-align: center;
    box-shadow: 0px 0px 20px 5px #2570f3a3;
}

.box::before, .box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 520px;
    background-image: linear-gradient(135deg, #e1d4cd 10%, #9708CC 100%);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}


.box::after {
    animation-delay: -3s;
    box-shadow: 4px 4px 4px inset red !important;
}

.form {
    position: absolute;
    inset: 5px;
    border-radius: 8px;
    background: #28292d;
    background-image: linear-gradient(to right, #055164 0%, #286ee2 100%);
    z-index: 10;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
}

.logo-5-2{
    max-width:200px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.admin_h1 {
    color: #ffffff;
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.inputBox {
    position: relative;
    width: 300px;
    margin-top: 35px;
        margin-bottom: 15px;
}


.inputBox input {
    position: relative;
    width: 100%;
    padding: 10px 9px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1em;
    letter-spacing: 0.05em;
    z-index: 10;
}

.inputBox span {
    position: absolute;
    left: 0;
    padding: 10px 10px 10px;
    font-size: 1em;
    color: #8f8f8f;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
}


.inputBox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    /* background: #45f3ff; */
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input.is-invalid ~ i{
    background-image: linear-gradient(160deg, red 0%, darkred 100%);
}


.inputBox input.is-value ~ span,
.inputBox input:focus ~ span {
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;
}

.inputBox input:focus ~ i {
    height: 44px;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%) !important;
}

.invalid-feedback{
    text-align: start;
    position: absolute;
    color: #00f7ff;
}

.inputBox input.is-invalid{
    padding-bottom:10px;
}


.btn-grad-submit {
    background-image: linear-gradient(135deg, #00008b 10%, #9708cc 100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 15px #0c1f7b;
    /* border-radius: 10px; */
    display: block;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.btn-grad-submit:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

@keyframes animate {
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}


.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.background .shape{
    background: linear-gradient(
        to right,
        #ff512f,
        #f09819
    );
    height: 225px;
    width: 225px;
    position: absolute;
    border-radius: 50%;
}
.shape:first-child{
    
    left: -80px;
    top: -80px;
}
.shape:last-child{
    background: linear-gradient(
        #1845ad,
        #23a2f6
    );
    right: -40px;
    bottom: -90px;
}



.inputBox .toggle-password{
    right: 0;
    display: block;
    position: absolute;
    color: #fff;
    font-size: 1em;
    z-index: 99;
    background: rgb(30 124 216 / 50%);
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
    pointer-events: all;
    margin-top: -40px;
}