.form-container{
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
            margin: 0;
        }
        body{
          margin: 0;
          padding: 0;
         font-family: Arial, sans-serif;
          background: #f2f2f2;
        }
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 1);
            background: #f2f2f2;
            margin-top: -190px;
            animation: scale 1s ease-out forwards;
        }
        @keyframes scale{
          from{transform: scale(0);}
          to{transform: scale(1);}
        }

        label {
            margin-top: 10px;
            width: 100%;
            text-align: left;
        }

        input, button {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
            outline: none;
            margin-bottom: 5px;
        }

        button {
            background-color: #007BFF;
            color: white;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #0056b3;
        }

        .spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left-color: blue;
            border-radius: 50%;
            animation: rotate 1s linear infinite;
            margin-top: 10px;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 10px;
            text-align: center;
        }

        .modal button {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .modal button:hover {
            background-color: #0056b3;
        }

          
      nav{
    background-color: #ccc;
    color: black;
    padding: 1em;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .logo{
          width: 3.4em;
          height: 3.4em;
          border-radius: 3.4em;
          margin-left: 8px;
          margin-right: 22px;
         animation: spin 3s 0.7s linear,
          slide 0.5s linear;
        }
        @keyframes spin{
          0%{transform: rotate(0deg);}
          50%{transform: rotate(360deg);}
          100%{transform: rotate(360deg);}
        }
        
        @keyframes slide{
   from { transform: translateX(-5em) }
   to { transform: translateX(0) }
 }
        .logo-text{
          text-align: center;
        }
        footer{
          background-color: black;
            color: white;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
