/**************************** Global Styles ****************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: "Arial", sans-serif;
    background: #f4f4f4 url("escheresque.png") repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
  }
  
  /**************************** Container Styling ****************************/
  
  .container {
    width: 350px;
    max-width: 600px;
    background: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto; /* Centers vertically */

  }
  
  /**************************** Logo Styling ****************************/
  
  .logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #28a745;
    margin: 0 auto 10px;
  }
  
  /**************************** Header Styling ****************************/
  
  h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  /**************************** Form Styling ****************************/
  
  label {
    display: block;
    font-size: 1rem;
    color: #333;
    text-align: left;
    margin-bottom: 5px;

  }
  
  input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border 0.3s ease-in-out;
    flex: 1;  
    min-width: 0;
    box-sizing: border-box; /* Prevent content overflow */
    overflow: visible; /* Ensure text remains visible */
  }
  
  input:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    outline: none;
  }
  
  /**************************** Button Styling ****************************/
  
  .button-container {
    width: 50%;
    padding: 12px;
    background: #28a745;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  
  .button-container:hover {
    background: #218838;
    opacity: 0.9;
  }
  
  .button-container:active {
    background: #1e7e34;
  }
  

  /**************************** Link Styling ****************************/
  
  p {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  p a {
    color: #f98b00;
    text-decoration: none;
    font-weight: bold;
  }
  
  p a:hover {
    text-decoration: underline;
    color: #28a745;
  }
  
  /**************************** Footer Styling ****************************/
  
  /* .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
  }
    */
  
  /**************************** Responsive Design ****************************/
  
  @media (max-width: 768px) {
    .container {
      padding: 20px;
      max-width: 90%;
    }
  
    h1 {
      font-size: 1.3rem;
    }
  
    .logo {
      margin-top: 50px;
    }
  
    .footer {
      position: fixed;
      padding: 5px;
    }
  }

  
  