
:root {
    --gradient-start: #ff1b6b;
    --gradient-end: #45caff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: url('https://i.ibb.co/SX8FTYYF/admission-process2.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
  }
  
  /* Forgot Password Container */
  .mentor-forgot-password-container {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
  }
  
  /* Logo */
  .mentor-logo {
    width: 210px;
    height: 70px;
    display: block;
    margin: 0 auto 20px;
  }
  
  /* Header */
  .mentor-forgot-password-card h2 {
    text-align: center;
    color: #ff1b6b;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .mentor-forgot-password-card p {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Inputs */
  .input-wrapper {
    margin-bottom: 20px;
  }
  
  .input-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
  }
  
  .input-wrapper input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffc8dd;
    border-radius: 10px;
    background-color: #fefefe;
    font-size: 1rem;
  }
  
  /* Button */
  .mentor-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .mentor-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #ffafcc, #a2d2ff);
  }
  
  /* Links */
  .mentor-links {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .mentor-links a {
    color: #ff1b6b;
    text-decoration: none;
    font-weight: 500;
  }
  
  .mentor-links a:hover {
    text-decoration: underline;
  }
  .logo {
    width: 130px;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  .login-wrapper {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 2.7rem;
    border-radius: 25px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: all 0.3s ease;
  }