body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f2f2f2;
  }
  
  .login-modal {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 600px;
    position: relative;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .title {
    text-align: center;
    color: #a84b5a;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
    margin-top: 20px;
  }
  
  .button-container {
    text-align: center;
    margin-top: 30px;
  }
  
  .back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a84b5a;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .back-button:hover {
    background-color: #8e3d4c;
  }
  