.wrapper {
    display: flex;
    justify-content: flex-start; /* Move to the left */
    align-items: flex-start; /* Move to the top */
    height: 100vh;
    padding: 20px; /* Add padding for fine-tuning */
  }



.loggInContainer {
    background-color: #d2d2d2;
    width: 400px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .title {
    color: #333;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }

  .input:focus {
    border-color: #007bff;
    outline: none;
  }

  .btn {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
  }

  .btn:hover {
    background-color: #0056b3;
  }

  .error {
    color: #ff4d4f;
    font-size: 14px;
    margin-top: 8px;
    display: none;
  }

  .hidden {
    display: none;
  }