

body{
    background: #edf2ff;
    padding: 40px 0px;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.custom-card {
    box-shadow: 0 4px 12px 3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}
.brand-icon {
    background: #fff3;
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.brand_head {
    background: linear-gradient(90deg,rgba(45, 84, 212, 1) 0%, rgba(129, 47, 210, 1) 50%, rgba(63, 49, 183, 1) 100%);
    padding: 30px 0px;
}
.brand-text {
    color: #fff;
    padding-top: 10px;
}
.brand-text h2 {
    font-weight: bold;
    font-size: 34px;
}
.brand-text p {
    color: #dbeafe;
    font-size: 15px;
    margin: 0px;
}
.eye-icon {
    color: #9ca3af;
    font-size: 18px;
    position: absolute;
    right: 10px;
    bottom: 17px;
}
.panel {
    padding: 30px;
}
.form-input {
    background: #fff;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.form-input::placeholder{
    color: #9ca3af;
}
a.forgot-pw {
    color: #2563eb;
    font-weight: bold;
    font-size: 14px;
}
.custom_btn {
    background: linear-gradient(90deg,rgba(45, 84, 212, 1) 0%, rgba(129, 47, 210, 1) 50%, rgba(63, 49, 183, 1) 100%);
    color: #fff;
    width: 100%;
    border: 0px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0px;
    margin-top: 20px;
}

.bottom-content p {
    color: #6b7280;
    font-size: 16px;
}
.bottom-content p::before {
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    border: 1px #d1d5db solid;
    width: 33%;
}
.bottom-content p::after {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    border: 1px #d1d5db solid;
    width: 33%;
}
.secure-box {
    background: #f0fdf480;
    border: 1px #bbf7d080 solid;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.secure-detail h6 {
    font-weight: bold;
    color: #166534;
    font-size: 16px;
}
.secure-detail p {
    color: #166534;
}

.secure-btm-box {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px 3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    margin-top: 20px;
}
.secure-box2 {
    background: #eff6ff80 !important;
    border-color: #bfdbfe80  !important;
}
.text-blue{
    color: #1e40af !important;
}
.secure-btm-detail p {
    margin: 0px;
}
.main-btm {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.up-down{
    animation: up-down linear 4s infinite;
  }
  
  @keyframes up-down{
    0% {
      transform:  translate(1px,0px)  ;
    }
    50% {
      transform:  translate(1px,5px)  ;
    }
    100% {
      transform:  translate(1px,0px)  ;
    }
  }
  
  .animate-spin {
    -webkit-animation: rotate 5s normal linear infinite;
    animation: rotate 5s normal linear infinite;
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
    25% {
      -webkit-transform: rotate3d(0, 0, 1, 90deg);
      transform: rotate3d(0, 0, 1, 90deg);
    }
    50% {
      -webkit-transform: rotate3d(0, 0, 1, 180deg);
      transform: rotate3d(0, 0, 1, 180deg);
    }
    75% {
      -webkit-transform: rotate3d(0, 0, 1, 270deg);
      transform: rotate3d(0, 0, 1, 270deg);
    }
    100% {
      -webkit-transform: rotate3d(0, 0, 1, 360deg);
      transform: rotate3d(0, 0, 1, 360deg);
    }
  }


.boxes{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px 3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.boxes-inner h5 {
    margin: 0;
    color: #000;
}
.boxes-inner p {
    margin: 0px;
    color: #4b5563;
    font-size: 12px;
    padding-top: 5px;
}
.login-back {
    width: 100%;
    border: 1px #d1d5db solid;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    color: #464646;
    font-size: 17px;
    border-radius: 10px;
    margin-top: 20px;
}