* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .login-container {
    background: white;
    width: 850px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .login-box {
    display: flex;
    flex-direction: row;
  }
  
  .left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .left h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
  }
  
  .google-btn {
      display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        border: none;
        padding: 10px;
        width: 100%;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        margin-bottom: 25px;
        color: #000;
        text-decoration: none;
  }
  
  .google-btn img {
    height: 20px;
  }
  
  .divider {
    text-align: center;
    margin: 10px 0 20px;
    position: relative;
  }
  
  .divider span {
    background: white;
    padding: 0 10px;
    color: #666;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ccc;
  }
  
  .divider::before {
    left: 0;
  }
  
  .divider::after {
    right: 0;
  }
  
  form input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .forgot-link {
    text-align: right;
    margin-bottom: 20px;
  }
  
  .forgot-link a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
  }
  
  .login-btn {
      width: 100%;
    background-color: #a8cdda;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
  }
  
  .login-btn:hover {
    background-color: #89b8c5; /* Slightly darker shade */
  }
  
  .bottom-text {
    font-size: 14px;
    text-align: center;
  }
  
  .signup-link {
    color: #a8cdda;
    text-decoration: none;
    margin-left: 5px;
    font-weight: 500;
  }
  
  .signup-link:hover {
      color: #2a5764;
  }
  
  .right {
    flex: 1;
    background: url('../img/1.jpg') no-repeat center center;
    background-size: cover;
  }
  