/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/styles/page.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/

        @keyframes pulse {
          0%, 100% { opacity: 1; }
          50% { opacity: .5; }
        }

        .main-container {
          display: flex;
          flex-direction: column;
          min-height: 100vh;
          background: linear-gradient(to bottom right, #f3f4f6, #f3f4f6);
          overflow: hidden;
        }

        @media (min-width: 768px) {
          .main-container {
            flex-direction: row;
          }
        }

        .login-panel {
          width: 100%;
          background-color: #064e3b;
          color: white;
          display: flex;
          flex-direction: column;
          justify-content: center;
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          backdrop-filter: blur(4px);
          border-left: 1px solid rgba(209, 213, 219, 0.3);
          position: relative;
          z-index: 10;
          min-height: 100vh;
        }

        @media (min-width: 768px) {
          .login-panel {
            width: 450px;
            background-color: #111827;
          }
        }

        .mobile-gradient {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 50%;
          background: linear-gradient(to bottom, rgba(165, 243, 252, 0.08), transparent);
          pointer-events: none;
        }

        .glow-circle {
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 100%;
          height: 8rem;
          background-color: rgba(0, 255, 0, 0.04);
          border-radius: 9999px;
          transform: translateX(-50%);
          filter: blur(48px);
        }

        .form-container {
          width: 100%;
          max-width: 20rem;
          margin-left: auto;
          margin-right: auto;
          display: flex;
          flex-direction: column;
          gap: 2rem;
        }

        .mobile-logo {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-bottom: 2rem;
        }

        .logo-text {
          font-size: 2.25rem;
          color: #34d399;
          font-weight: bold;
        }

        .user-icon-container {
          display: flex;
          flex-direction: column;
          margin-bottom: 1.5rem;
          gap: 0.5rem;
          align-items: center;
        }

        @media (max-width: 767px) {
          .user-icon-container {
            display: none;
          }
        }

        .user-icon-text {
          font-size: 1.875rem;
          color: #e5e7eb;
          font-weight: bold;
          letter-spacing: -0.025em;
        }

        .form {
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
        }

        .error-message {
          font-size: 0.875rem;
          color: #f87171;
          background-color: rgba(185, 28, 28, 0.08);
          border: 1px solid #b91c1c;
          border-radius: 0.5rem;
          padding: 0.5rem;
          margin-bottom: 0.5rem;
        }

        .input-group {
          position: relative;
        }

        .input-label {
          display: block;
          font-size: 0.875rem;
          margin-bottom: 0.5rem;
          font-weight: 500;
          color: #d1d5db;
        }

        .input-wrapper {
          position: relative;
        }

        .input-icon {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          padding-left: 0.75rem;
          display: flex;
          align-items: center;
          pointer-events: none;
        }

        .icon {
          height: 1.25rem;
          width: 1.25rem;
          transition: color 0.2s;
        }

        .active-icon {
          color: #34d399;
        }

        .input-field {
          width: 100%;
          border-radius: 0.5rem;
          padding-left: 2.5rem;
          padding-right: 1rem;
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
          color: black;
          /* placeholder-color: #6b7280; */
          border: 1px solid #4b5563;
          background-color: white;
          outline: none;
          transition: all 0.2s;
        }

        .input-field:focus {
          /* ring: 2px solid #10b981; */
          border-color: transparent;
        }

        .highlight-bar {
          position: absolute;
          bottom: 0;
          left: 0;
          height: 2px;
          background-color: #34d399;
          transition: width 0.3s;
        }

        .submit-button {
          width: 100%;
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
          border-radius: 0.5rem;
          font-weight: 600;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0.5rem;
          transition: all 0.3s;
          position: relative;
          overflow: hidden;
        }

        .disabled-button {
          background-color: #374151;
          cursor: not-allowed;
          color: #9ca3af;
        }

        .enabled-button {
          background: linear-gradient(to right, #059669, #10b981);
          color: white;
        }

        .enabled-button:hover {
          background: linear-gradient(to right, #10b981, #059669);
          box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
        }

        .button-text {
          position: relative;
          z-index: 10;
          display: flex;
          align-items: center;
        }

        .button-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(to right, #10b981, #059669);
          opacity: 0;
          transition: opacity 0.3s;
        }

        .button-overlay:hover {
          opacity: 1;
        }

        .footer-text {
          text-align: center;
          color: #6b7280;
          font-size: 0.75rem;
          margin-top: 2rem;
        }

        .footer-copyright {
          color: white;
        }

        .sidebar {
          display: none;
          flex: 1;
          align-items: center;
          justify-content: center;
          padding: 1rem;
          position: relative;
        }

        @media (min-width: 768px) {
          .sidebar {
            display: flex;
          }
        }

        .light-effect {
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
          pointer-events: none;
        }

        .square-large-top {
          position: absolute;
          top: 2.5rem;
          left: 2.5rem;
          width: 4rem;
          height: 4rem;
          border: 4px solid rgba(16, 185, 129, 0.3);
          border-radius: 0.5rem;
        }

        .square-small-top {
          width: 2rem;
          height: 2rem;
          border: 1px solid #34d399;
          margin: 0.25rem;
        }

        .square-large-bottom {
          position: absolute;
          bottom: 2.5rem;
          right: 2.5rem;
          width: 5rem;
          height: 5rem;
          border: 4px solid rgba(16, 185, 129, 0.3);
          border-radius: 0.5rem;
        }

        .square-small-bottom {
          width: 2.5rem;
          height: 2.5rem;
          border: 1px solid #34d399;
          margin: 0.25rem;
        }

        .sidebar-content {
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          z-index: 10;
        }

        .logo-container {
          position: relative;
          margin-bottom: 3rem;
        }

        .sidebar-text {
          font-size: 1.125rem;
          color: #6b7280;
          font-weight: bold;
        }
      
