 :root {
     --bg: #0f1226;
     --card: rgba(255, 255, 255, 0.08);
     --card-2: rgba(255, 255, 255, 0.06);
     --txt: #e9eaf1;
     --muted: #aab0c0;
     --accent: #7c5cff;
     --accent-2: #22c1c3;
     --error: #ff6b6b;
     --ok: #2ecc71;
     --radius: 18px;
     --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  

   
 }

 * {
     box-sizing: border-box
 }




 .wrap {
     width: 100%;
     max-width: 500px;
     position: relative;
     margin: 0 auto;
 }

 /* glowing blobs */
 .blob {
     position: absolute;
     filter: blur(40px);
     opacity: .5;
     z-index: 0;
 }

 .blob.b1 {
     width: 220px;
     height: 220px;
     right: -60px;
     top: -60px;
     background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%)
 }

 .blob.b2 {
     width: 200px;
     height: 200px;
     left: -60px;
     bottom: -60px;
     background: radial-gradient(circle at 70% 70%, var(--accent-2), transparent 60%)
 }

 .card {
     position: relative;
     z-index: 1;
     background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
     border: 1px solid rgba(255, 255, 255, .09);
     backdrop-filter: blur(12px);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     padding: 28px;
     transition: transform .25s ease, box-shadow .25s ease;
     overflow: hidden;
 }

 .card:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
 }

 .card:before {
     content: "";
     position: absolute;
     inset: 0;
     pointer-events: none;
     background: radial-gradient(800px 240px at 50% -120px, rgba(255, 255, 255, .12), transparent 60%);
 }

 .header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 18px
 }

 .logo {
     display: grid;
     place-items: center;
     width: 44px;
     height: 44px;
     border-radius: 12px;
     background: linear-gradient(135deg, var(--accent), var(--accent-2));
     box-shadow: inset 0 0 18px rgba(255, 255, 255, .25)
 }

 .logo svg {
     width: 24px;
     height: 24px;
     color: white
 }

 .title {
     font-size: 1.15rem;
     font-weight: 700;
     letter-spacing: -.2px
 }

 .subtitle {
     font-size: .9rem;
     color: var(--muted);
     margin-top: 2px
 }

 form {
     display: grid;
     gap: 16px;
 }

 .field {
     position: relative
 }

 .label {
     display: block;
     font-size: .85rem;
     color: var(--muted);
     margin-bottom: 8px
 }

 .input {
     width: 100%;
     padding: 14px;
     /* room for icon right (rtl) */
     border-radius: 14px;
     background: rgba(255, 255, 255, .06);
     border: 2px solid var(--txt) ;

     outline: none;
     font-size: 0.95rem;
     transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;

 }

 .input::placeholder {
    color: #736e6e;
 }

 .input:focus {
     border-color: var(--accent);
     box-shadow: 0 0 0 3px rgba(124, 92, 255, .25)
 }

 .icon {
     position: absolute;
     inset-inline-end: 12px;
     top: 50%;
     width: 20px;
     height: 20px;
     opacity: .7;
     pointer-events: none;
 }

 .actions {
     display: grid;
     gap: 10px;
     margin-top: 8px
 }

 .btn {
     appearance: none;
     border: 0;
     cursor: pointer;
     font-weight: 700;
     padding: 14px 16px;
     border-radius: 14px;
     background: #1E88E5;
     color: #fff;

     transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
 }

 .btn:active {
     transform: translateY(1px);
 }

 .btn:hover {
     filter: brightness(1.05);
 
 }

 .help {
     font-size: .82rem;
     color: var(--muted);
     text-align: center
 }

 .note {
     display: none;
     font-size: .9rem;
     padding: 12px 14px;
     border-radius: 12px
 }

 .note.error {
     display: block;
     background: rgba(255, 107, 107, .12);
     border: 1px solid rgba(255, 107, 107, .35);
     color: #ffdede
 }

 .note.ok {
     display: block;
     background: rgba(46, 204, 113, .12);
     border: 1px solid rgba(46, 204, 113, .35);
     color: #e6ffef
 }

 @media (max-width: 520px) {
     .card {
         padding: 22px
     }

     .title {
         font-size: 1.05rem
     }
 }

.loader10 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  animation: loader10-uba7e1836 0.9s ease alternate infinite;
  animation-delay: 0.36s;
  top: 50%;
  margin: -42px auto 0; }
  .loader10::after, .loader10::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    animation: loader10-uba7e1836 0.9s ease alternate infinite; }
  .loader10::before {
    left: -40px;
    animation-delay: 0.18s; }
  .loader10::after {
    right: -40px;
    animation-delay: 0.54s; }

@keyframes loader10-uba7e1836 {
  0% {
    box-shadow: 0 28px 0 -28px #0052ec; }
  100% {
    box-shadow: 0 28px 0 #0052ec; } }