.social-login-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}
.content-popup {
  display: none !important;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.google-btn {
  background: #db4437;
}

.google-btn:hover {
  background: #c23321;
}

.meta-btn {
  background: #1877f2;
}

.meta-btn:hover {
  background: #145dbf;
}

.google-profile-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    width: max-content;
}
.google-profile-holder .image-holder {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.google-profile-holder .image-holder img {
    border-radius: 50%;
}
.google-profile-holder .meta .name {
    font-size: 12px;
    margin-bottom: 0px;
    text-align: center;
}
.google-profile-holder .meta .email {
    font-weight: bold;
}
.google-profile-holder .meta {
    display: flex;
    align-self: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 20px;
}
.google-profile-holder .no-accounts {
    font-size: 14px;
    color: #da362a;
    text-transform: uppercase;
    margin-top: 30px;
    font-weight: bold;
}
.google-profile-holder .list-of-accounts h3 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 40px;
}
.google-profile-holder .list-of-accounts .account {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}
.google-profile-holder .list-of-accounts .account.active {
  background: #03a9f44d;
  border: 1px solid #673AB7;
}
.google-profile-holder .list-of-accounts .account .name {
  font-size: 12px;
  text-transform: uppercase;
  width: 200px;
  font-weight: bold;
}
.google-profile-holder .list-of-accounts input {
  display: none;
}
.google-profile-holder .list-of-accounts  input:checked + label {
  background: #03a9f44d;
  border: 1px solid #673AB7;
}
.google-profile-holder .list-of-accounts .account .id {
  font-size: 10px;
}
.google-profile-holder .list-of-accounts button {
  width: 100%;
  background: #4CAF50;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: unset;
  border-radius: 10px;
  margin-top: 16px;
  cursor: pointer;
}
.google-profile-holder .success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  display: none;
}
.google-profile-holder .success-message span {
  color: #1e7121;
  font-weight: bold;
  font-size: 34px;
  margin-bottom: 10px;
  text-align: center;
  text-align: center;
  display: block;
}
.google-profile-holder .success-message p {
  letter-spacing: 10px;
}