 .reset-container {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      width: 100%;
      max-width: 400px;
      position: relative;
      overflow: hidden;
    }
    .form-control {
      border-radius: 10px;
      padding: 10px;
    }
    .btn-primary {
      border-radius: 10px;
      padding: 10px;
      background: linear-gradient(to right, #6a11cb, #2575fc);
      border: none;
    }
    .btn-primary:hover {
      background: linear-gradient(to right, #2575fc, #6a11cb);
    }
    .spinner-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(255,255,255,0.7);
      z-index: 2000;
      display: none;
      justify-content: center;
      align-items: center;
    }
    .message {
      position: fixed;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 20px;
      border-radius: 20px;
      z-index: 3000;
      display: none;
      font-weight: bold;
    }
    .message.success {
      background-color: #4caf50;
      color: white;
    }
    .message.error {
      background-color: #f44336;
      color: white;
    }

    /* OTP Inputs */
    .otp-inputs input {
      width: 40px;
      height: 40px;
      margin: 0 5px;
      text-align: center;
      font-size: 20px;
      border-radius: 8px;
      border: 1px solid #ccc;
      transition: all 0.3s;
    }
    .otp-inputs input:focus {
      border-color: #2575fc;
      box-shadow: 0 0 5px rgba(37,117,252,0.5);
      outline: none;
    }

    /* Success Animation */
    .success-checkmark {
      width: 80px;
      height: 200px;
      margin: 20px auto 10px;
    }
    .check-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: block;
      stroke-width: 2;
      stroke: #4caf50;
      stroke-miterlimit: 10;
      box-shadow: inset 0px 0px 0px #4caf50;
      animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
      position: relative;
    }
    .icon-line {
      height: 5px;
      background-color: #4caf50;
      display: block;
      border-radius: 2px;
      position: absolute;
      transform-origin: left center;
    }
    .line-tip {
      width: 25px;
      top: 40px;
      left: 14px;
      transform: rotate(45deg) scaleX(0);
      animation: lineTip 0.3s ease-out 0.7s forwards;
    }
    .line-long {
      width: 47px;
      top: 35px;
      right: 8px;
      transform: rotate(-45deg) scaleX(0);
      animation: lineLong 0.3s ease-out 0.7s forwards;
    }
    .icon-circle, .icon-fix {
      position: absolute;
      top: 0;
      left: 0;
      width: 80px;
      height: 80px;
      border-radius: 50%;
    }
    .icon-circle {
      box-sizing: border-box;
      border: 5px solid #4caf50;
    }
    .icon-fix {
      background-color: white;
      transform: rotate(-45deg) scaleX(0);
    }

    @keyframes scale {
      0%, 100% { transform: none; }
      50% { transform: scale3d(1.1, 1.1, 1); }
    }
    @keyframes fill {
      100% { box-shadow: inset 0px 0px 0px 30px #4caf50; }
    }
    @keyframes lineTip {
      0% { transform: rotate(45deg) scaleX(0); }
      100% { transform: rotate(45deg) scaleX(1); }
    }
    @keyframes lineLong {
      0% { transform: rotate(-45deg) scaleX(0); }
      100% { transform: rotate(-45deg) scaleX(1); }
    }
