/* .log-container{
    display: flex;
    height: 100vh;
   
}
.left{
    background-color: #31838f;
    width: 60%;
}
.right{
    background-color: white;
    width: 40%;
    border: 10px solid  #31838f;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    background: #31838f;
    color: #fff;
  }
  
  .container {
    display: flex;
    height: 100vh;
    flex-wrap: wrap;
  }
  .left {
    flex: 1;
    background-color: #31838f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 500px;
    padding: 20px;
  }
  .logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
  }
  .right {
    flex: 1;
    background-color: #143236;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-width: 300px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .google-btn {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .google-btn:hover {
    background-color: #e5e5e5;
  }
  
  .signup-link {
    font-size: 0.9rem;
  }
  
  .signup-link a {
    color:  #31838f;
    text-decoration: none;
  }
  
  .signup-link a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  }