* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .left {
    flex: 1;
  }
  .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
.right {
    flex: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  
  .form-container {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  .logo {
    width: 120px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .info a {
    color: #222;
    text-decoration: underline;
  }
  
  form label {
    display: block;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
  }
  form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    margin-bottom: 15px;
  }
  .btn {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }
  .btn:hover {
    background: #333;
  }
  
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999999ab;
    margin: 20px 0;
    font-size: 14px;
    font-weight: 500;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
  }
  
  .divider:not(:empty)::before {
    margin-right: 10px;
  }
  .divider:not(:empty)::after {
    margin-left: 10px;
  }
  
  .social-buttons {
    display: flex;
    gap: 10px;
  }
  .social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #aaa;
    padding: 10px;
    cursor: pointer;
    background: #fff;
  }
  .social img {
    width: 26px;
  }
  .social:hover {
    background: #f5f5f5;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .left {
      height: 40vh;
    }
    .right {
      height: 60vh;
    }
  }

  

.form-container.loading {
  position: relative;
  filter: blur(3px); 
  transition: filter 0.3s ease;
}

.form-container.loading::after {
  content: "Redirecting to provider...";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #333;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.welcome-message h2 {
  font-size: 1.5rem;
}

.welcome-message p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}


.account-picker-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

.account-picker {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: left;
  overflow: hidden;
}

.account-picker-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.account-picker-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.account-picker-header p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.account-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
}

.account-list li {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.account-list li:hover {
  background-color: #f5f5f5;
}

.account-list li .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  margin-right: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.account-list li .user-info {
  line-height: 1.3;
}

.account-list li .user-name {
  font-weight: 500;
}

.account-list li .user-email {
  font-size: 0.85rem;
  color: #666;
}