  * {
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
      margin: 0;
      padding: 0;
    }

    body {
      margin: 0;
      background: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .login-container {
      width: 360px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 30px;
      overflow: hidden;
      position: relative;
      margin: 20px;
    }

    /* Top image section */
    .header {
      height: 220px;
      background: linear-gradient(rgba(15, 47, 68, 0.8), rgba(15, 47, 68, 0.9)), url('{{ asset('image/login.jpg') }}') center center / cover no-repeat;
      border-bottom-left-radius: 28px;
      border-bottom-right-radius: 28px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .header:before {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 30px;
      background: white;
      border-radius: 30px 30px 0 0;
    }

    .header img {
      height: 80px;
      width: 80px;
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .form {
      padding: 35px 30px 25px;
      position: relative;
      top: -15px;
      background: white;
      border-radius: 30px;
    }

    .form label {
      font-size: 15px;
      font-weight: 600;
      color: #1e3a4c;
      display: block;
      margin-bottom: 8px;
      margin-left: 5px;
    }

    .input-box {
      display: flex;
      align-items: center;
      background: #eef5fb;
      border-radius: 30px;
      padding: 14px 20px;
      margin-bottom: 25px;
      border: 2px solid #1e3a4c;
      transition: all 0.3s ease;
    }

    .input-box:focus-within {
      box-shadow: 0 0 0 3px rgba(30, 58, 76, 0.2);
    }

    .input-box span {
      margin-right: 12px;
      color: #1e3a4c;
      font-size: 15px;
      font-weight: 500;
      min-width: 35px;
    }

    .input-box input {
      border: none;
      outline: none;
      background: transparent;
      width: 100%;
      font-size: 15px;
      color: #000;
    }

    .input-box input::placeholder {
      color: #7a8a99;
    }

    .login-btn {
      width: 100%;
      height: 52px;
      border: none;
      border-radius: 30px;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(90deg, #0f2f44, #5a7285);
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(15, 47, 68, 0.4);
      transition: all 0.3s ease;
      margin-top: 5px;
      letter-spacing: 0.5px;
    }

    .login-btn:hover {
      background: linear-gradient(90deg, #0a2538, #4a5e70);
      box-shadow: 0 8px 20px rgba(15, 47, 68, 0.5);
    }

    .login-btn:active {
      transform: scale(0.98);
      box-shadow: 0 3px 10px rgba(15, 47, 68, 0.3);
    }

    .footer-text {
      text-align: center;
      margin-top: 22px;
      font-size: 14px;
      color: #333;
      display: flex;
      justify-content: space-between;
      padding: 0 10px;
    }

    .footer-text a {
      text-decoration: none;
      color: #1e3a4c;
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 15px;
    }

    .footer-text a:hover {
      color: #0f2f44;
      background: #eef5fb;
    }

    .eye-icon {
      width: 22px;
      cursor: pointer;
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .eye-icon:hover {
      transform: scale(1.1);
    }

    .phone-prefix {
      display: flex;
      align-items: center;
      margin-right: 10px;
      color: #1e3a4c;
      font-weight: 500;
    }

    .phone-prefix span {
      margin-right: 5px;
    }

    /* Responsive adjustments */
    @media (max-width: 400px) {
      .login-container {
        width: 320px;
        margin: 10px;
      }
      
      .form {
        padding: 30px 20px 20px;
      }
      
      .header {
        height: 200px;
      }
    }