/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/

/** ADD YOUR AWESOME CODES HERE **/


/*------------------------------------------------------------------
    * Login Section
-------------------------------------------------------------------*/

 /* Root container */
 #login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
  }
 #signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
  }

  /* Form styling */
  #login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
  }

  #login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }

  #login-form label {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
  }

  #login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
  }

  #login-form input:focus {
    border-color: #46c6ce;
  }

  #login-form button {
    width: 100%;
    padding: 10px;
    background-color: #46c6ce;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }

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

  #login-form p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
  }

  #login-form p a {
    color: #46c6ce;
    text-decoration: none;
  }

  #login-form p a:hover {
    text-decoration: underline;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    #login-form {
      padding: 15px;
    }

    #login-form h2 {
      font-size: 20px;
    }

    #login-form input,
    #login-form button {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    #login-form h2 {
      font-size: 18px;
    }

    #login-form input,
    #login-form button {
      font-size: 13px;
    }
  }
/*------------------------------------------------------------------
    * _______ Section
-------------------------------------------------------------------*/