/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
  }
  
  /* Grid Container */
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
  }
  
  /* Image Section */
  .image-section {
    position: relative;
    overflow: hidden;
  }
  
  .hospital-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 5s infinite alternate;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 117, 252, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: slideInLeft 1s ease-in-out;
  }
  
  .image-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .image-overlay p {
    font-size: 16px;
  }
  
  /* Form Section */
  .form-section {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-container {
    width: 100%;
    max-width: 350px;
    animation: slideInRight 1s ease-in-out;
  }
  
  .login-header .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
  }
  
  .login-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2575fc;
  }
  
  .login-header p {
    font-size: 14px;
    color: #666;
  }
  
  /* Login Form */
  .login-form {
    margin-top: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
  }
  
  .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus {
    border-color: #2575fc;
    box-shadow: 0 0 10px rgba(37, 117, 252, 0.5);
  }
  
  /* Login Button */
  .login-button {
    width: 100%;
    padding: 10px;
    background: #2575fc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .login-button:hover {
    background: #1b5bbf;
    transform: scale(1.05);
  }
  
  /* Login Footer */
  .login-footer {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
  }
  
  .login-footer a {
    color: #2575fc;
    text-decoration: none;
  }
  
  .login-footer a:hover {
    text-decoration: underline;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes zoomIn {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.1);
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }