* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .left h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .left h3{
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  button {
    padding: 12px;
    background-color: #003B4A;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  
  .checkbox input {
    margin-right: 8px;
  }
  
  .checkbox a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    background-color: #fff;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    height: 1px;
    background-color: #4f4d4d;
    position: absolute;
    top: 50%;
    width: 40%;
  }
  
  .divider::before {
    left: 0;
  }
  
  .divider::after {
    right: 0;
  }
  
  .divider span {
    background: #fcfafa;
    padding: 0 12px;
    color: #999;
  }
  
  .google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .google-btn img {
    width: 20px;
  }
  
  .signin-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
  }
  
  .signin-link a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .right {
    flex: 1;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
  }
  
  .logo {
    position: absolute;
    top: 2vh;
    right: 2vh;
    width: 20vh;
  }
  
  .background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .inputerror {
    color: red;
    font-size: 0.75rem;
    display: none;
  }
  .google-btn img{
    padding-right: 2vh;
    width: fit-content;
  }