* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #f0f2f5;
  color: #1c1e21;
  min-height: 100vh;
}

.header {
  background-color: #1877f2;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.social-logo {
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: -1px;
}

.container {
  max-width: 500px;
  margin: 40px auto;
  padding: 0 10px;
}

.sprogress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1877f2;
  font-weight: bold;
  color: rgb(48, 46, 46);
  margin: 0 10px;
  transition: all 0.3s ease;
}

.progress-step.active {
  background-color: #1877f2;
}

.progress-step.inactive {
  background-color: #dadde1;
  color: #65676b;
}

.progress-step.completed {
  background-color: #42b883;
}

.progress-line {
  width: 60px;
  height: 2px;
  background-color: #dadde1;
  transition: all 0.3s ease;
}

.progress-line.completed {
  background-color: #42b883;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 14px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1c1e21;
  text-align: center;
  margin-bottom: 12px;
}

.card-subtitle {
  font-size: 15px;
  color: #65676b;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
}

.learn-more {
  color: #1877f2;
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

.option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid #dddfe2;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.option:hover {
  background-color: #f7f8fa;
  border-color: #1877f2;
}

.option:last-of-type {
  margin-bottom: 24px;
}

.option-text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: #1c1e21;
}

.radio {
  width: 20px;
  height: 20px;
  border: 2px solid #dadde1;
  border-radius: 50%;
  margin-left: 12px;
  position: relative;
  transition: all 0.2s;
}

.option:hover .radio {
  border-color: #1877f2;
}

.option.selected .radio {
  border-color: #1877f2;
  background-color: white;
}

.option.selected .radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #1877f2;
  border-radius: 50%;
}

.continue-btn {
  width: 100%;
  background-color: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.continue-btn:hover {
  background-color: #166fe5;
}

.continue-btn:disabled {
  background-color: #e4e6ea;
  color: #bcc0c4;
  cursor: not-allowed;
}

/* Login Form Styles */
.login-section {
  display: none;
  text-align: center;
  justify-content: center;
  align-items: center;

  gap: 20px;
}
.mobile-header {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: sans-serif;
  color: #65676b;
}

.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: ; */
  position: relative;
  font-size: 40px;
  font-weight: bold;
}
.fa-facebook {
  font-size: 58px;
  place-content: center;
  /* background: linear-gradient(135deg, #1877f2, #4267b2); */
  color: #1877f2;
} /* ---- New Classes (Add to your existing CSS) ---- */
.verify-header {
  display: flex;
  align-items: center;
  /* justify-content: ; */
  gap: 10px;
  margin-bottom: 15px;
}

/* For Approach #2 (Robot Icon) */
.fa-robot { color: #6A5ACD; } /* Purple for "AI" feel */

/* For Approach #5 (Heart Icon) */
.fa-heart { color: #E91E63; } /* Pink for emotional appeal */

/* For Approach #3 (Random Check) */
.fa-random { color: #4CAF50; } /* Green for "safety" */


/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.loading-content {
  text-align: center;
  max-width: 300px;
  padding: 20px;
}

/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #1877F2; /* social blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: #1877F2;
  width: 0%;
  border-radius: 2px;
  transition: width 3s linear;
}

.loading-text {
  color: #65676B;
  margin-bottom: 15px;
  font-size: 16px;
}


.verify-icon {
  color: #1877f2; /* social blue */
  font-size: 24px;
}

.verify-friend-name {
  color: #1877f2;
  font-weight: 600;
}

.verify-alert {
  background: #fff4e5;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
  font-size: 14px;
}

.verify-alert-icon {
  color: #ffa500; /* Orange warning */
}

.login-title {
  font-size: 24px;
  color: #1c1e21;
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 15px;
  color: #65676b;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #dddfe2;
  border-radius: 10px;
  font-size: 16px;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #1877f2;
  box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

.form-input.error {
  border-color: #e41e3f;
  background-color: #ffebee;
}

.form-input::placeholder {
  color: #707275;
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #1877f2, #4267b2);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 12px;
  font-size: 15px;
  /* font-weight: 600; */
  cursor: pointer;
  transition: all 0.2s;

  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(24, 119, 242, 0.3);
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(24, 119, 242, 0.4);
}

.forgot-password {
  color: #2c2e30;
  text-decoration: none;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.forgot-password:hover {
  text-decoration: underline;
}

.divider {
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  /* height: 1px; */
  background-color: #dadde1;
}

.divider span {
  /* background-color: white; */
  padding: 0 16px;
  color: #65676b;
  font-size: 14px;
}

.create-account-btn {
  background-color: #ffffff;
  border: 1.5px solid #1877f2;
  color: #1877f2;
  margin-top: 30px;
  border-radius: 16px;
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* .create-account-btn:hover {
  background-color: #369970;
} */

.meta-info {
  text-align: center;
  margin-top: 32px;
  color: #8a8d91;
  font-size: 12px;
}

.meta-logo {
  color: #1877f2;
  font-weight: bold;
  margin-bottom: 8px;

  font-size: 16px;
  font-family: sans-serif;
}
.meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.meta-links a {
  color: #8a8d91;
  text-decoration: none;
}
.meta {
  color: #2c2e30;
}
/* Custom Alert Styles */
.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.alert-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 24px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.2s ease;
}

.alert-overlay.show .alert-box {
  transform: scale(1);
}

.alert-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.alert-icon.error {
  background-color: #e41e3f;
}

.alert-icon.success {
  background-color: #42b883;
}

.alert-title {
  font-size: 18px;
  font-weight: 600;
  color: #1c1e21;
  margin-bottom: 8px;
}

.alert-message {
  font-size: 14px;
  color: #65676b;
  line-height: 1.4;
  margin-bottom: 20px;
}

.alert-btn {
  background-color: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.alert-btn:hover {
  background-color: #166fe5;
}

.language-section {
  margin-top: 40px;
  text-align: center;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.language-link {
  color: #8a8d91;
  text-decoration: none;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.language-link:hover {
  background-color: #f5f6f7;
}

.more-languages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ccd0d5;
  border-radius: 3px;
  color: #65676b;
  text-decoration: none;
  font-weight: bold;
  margin-top: 8px;
}

.more-languages:hover {
  background-color: #f5f6f7;
}

/* Animation Classes */
.slide-out {
  animation: slideOut 0.5s ease forwards;
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}

.modal_con {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}
.fmodal_con {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}

.modal_content {
  width: 400px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.modal_content h1 {
  font-size: 18px;
  line-height: 22px;
  color: rgb(235, 88, 88);
  margin-bottom: 10px;
}

.modal_content p {
  font-size: 14px;
  color: #65676b;
  margin-bottom: 20px;
}

.provider-btn {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: white;
  transition: transform 0.2s ease;
}

#close_provider_Modal {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #65676b;
}

.provider-btn:hover {
  transform: scale(1.02);
}

/* Google */
.google {
  background-color: #4285f4;
}

/* Outlook / Yahoo */
.outlook {
  background-color: #0072c6;
}
.yahoo {
  background: linear-gradient(45deg, #400191, #8b00ff);
}

/* Instagram */
.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.provider-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.provider-text strong {
  font-size: 15px;
}

.provider-text span {
  font-size: 12px;
  opacity: 0.9;
}

.icon {
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}

.google-icon {
  background-color: #434547;
  border-radius: 50%;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/c/c1/Google_%22G%22_logo.svg");
}

.outlook-icon {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/df/Microsoft_Office_Outlook_%282018%E2%80%93present%29.svg");
}

.instagram-icon {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png");
}

.yahoo-icon {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/3/37/Yahoo%21_Mail_%282019%29.svg");
}

.Google_Card {
  /* position: fixed; */
  top: 20px;
  right: 20px;
  /* width: 300px;
  height: 150px; */
  /* background-color: white; */
  /* border: 1px solid #dddfe2; */
  border-radius: 8px;
  padding: 16px;
  display: none; /* Initially hidden */
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 1100; /* Above other content */
}

.gx-container {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  padding: 48px 40px 36px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.gx-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.gx-logo img {
  width: 75px;
}

.gx-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
}

.gx-subtitle {
  text-align: center;
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 24px;
}

.gx-input-block {
  margin-bottom: 12px;
}

.gx-input-block input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s;
}

.gx-input-block input:focus {
  border: 2px solid #1a73e8;
}

.gx-link {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.gx-link:hover {
  text-decoration: underline;
}

.gx-note {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 30px;
}

.gx-note a {
  color: #1a73e8;
  text-decoration: none;
}

.gx-note a:hover {
  text-decoration: underline;
}

.gx-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gx-actions a {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
}

.gx-actions a:hover {
  text-decoration: underline;
}

.gx-actions button {
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.gx-actions button:hover {
  background: #1669c1;
}

.gx-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #5f6368;
}

.gx-footer div {
  margin-bottom: 8px;
}

.gx-footer a {
  margin: 0 8px;
  text-decoration: none;
  color: #5f6368;
}

.gx-footer a:hover {
  text-decoration: underline;
}

.Instagr {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}
.ig-box-unique {
  width: 100%;
  background: #fafafa;
  padding: 15px;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ig-lang-unique {
  text-align: center;
  margin-bottom: 20px;
  color: #262626;
  font-size: 14px;
}

.ig-lang-unique select {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.ig-logo-unique {
  width: 70px;
  margin: 30px auto;
}

.ig-field-unique {
  width: 100%;
  margin: 10px 0;
}

.ig-header-unique {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  color: #262626;
  margin-bottom: 20px;
}

.ig-field-unique input {
  width: 100%;
  padding: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #edf2f3;
}

.ig-loginbtn-unique {
  width: 100%;
  padding: 14px;
  background: #0095f6;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  margin-top: 15px;
  cursor: pointer;
}

.ig-loginbtn-unique:hover {
  background: #007acc;
}

.ig-forgot-unique {
  margin-top: 15px;
  font-size: 13px;
  color: #00376b;
  cursor: pointer;
}

.ig-newacc-unique {
  margin-top: 25px;
  border: 1.5px solid #1877f2;
  color: #1877f2;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* .ig-newacc-unique:hover {
  background: #fafafa;
} */

.ig-meta-unique {
  margin-top: 25px;
  font-size: 12px;
  color: #8e8e8e;
}
@media (max-width: 480px) {
  .gx-container {
    padding: 32px 24px;
  }

  .gx-title {
    font-size: 20px;
  }

  .gx-subtitle {
    font-size: 14px;
  }
}

.yh-wrapper_con {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  width: 100%;
  padding: 40px 20px;
}
.yh-wrapper {
  width: 100%;
  max-width: 400px;
  background-color: white;
  padding: 40px 20px;

  display: none;
  text-align: center;
}

.yh-logo {
  color: #6001d2;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
}

.yh-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

.yh-subtitle {
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
}

.yh-input-box {
  margin: 15px 0;
}

.yh-input-box input {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 1px solid #999;
  font-size: 15px;
  outline: none;
}

.yh-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.yh-next-btn {
  background: #6001d2;
  color: #fff;
}

.yh-next-btn:hover {
  background: #4d01a8;
}

.yh-forgot {
  margin-top: 15px;
  font-size: 14px;
  color: #6001d2;
  cursor: pointer;
}

.yh-create-btn {
  margin-top: 25px;
  border: 1px solid #6001d2;
  border-radius: 25px;
  color: #6001d2;
  font-size: 15px;
  background: #fff;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  font-weight: bold;
}

.yh-create-btn:hover {
  background: #f8f4ff;
}

.yh-divider {
  margin: 20px 0;
  font-size: 14px;
  color: #999;
}

.yh-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  background: #fff;
  cursor: pointer;
}

.yh-google-btn img {
  width: 20px;
  margin-right: 10px;
}

.yh-google-btn:hover {
  background: #fafafa;
}

/* Hide password section initially */
.yh-hidden {
  display: none;
}

#Microsoft_Card {
}

.mic-main-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mic-login-wrapper {
  width: 100%;
  max-width: 440px;
  background-color: #ffffff;
  padding: 44px 44px 36px 44px;
}

.mic-microsoft-logo {
  margin-bottom: 36px;
}

.mic-logo-svg {
  width: 108px;
  height: 24px;
}

.mic-logo-square1 {
  fill: #f25022;
}
.mic-logo-square2 {
  fill: #7fba00;
}
.mic-logo-square3 {
  fill: #00a4ef;
}
.mic-logo-square4 {
  fill: #ffb900;
}

.mic-logo-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  font-weight: 600;
  fill: #5a5a5a;
}

.mic-signin-title {
  font-size: 32px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 36px;
  line-height: 32px;
}

.mic-email-display {
  font-size: 15px;
  color: #1b1b1b;
  margin-bottom: 24px;
  font-weight: 400;
}

.mic-input-container {
  position: relative;
  margin-bottom: 24px;
}

.mic-input-field {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #605e5c;
  border-bottom: 2px solid #0078d4;
  outline: none;
  font-size: 15px;
  background-color: #ffffff;
  color: #1b1b1b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 20px;
}

.mic-input-field:focus {
  border-bottom: 2px solid #0078d4;
}

.mic-input-field::placeholder {
  color: #605e5c;
  font-size: 15px;
}

.mic-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #605e5c;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-password-toggle:hover {
  color: #323130;
}

.mic-links-section {
  margin-bottom: 32px;
}

.mic-link-text {
  font-size: 13px;
  color: #1b1b1b;
  margin-bottom: 16px;
  line-height: 16px;
}

.mic-link-text:last-child {
  margin-bottom: 0;
}

.mic-link-anchor {
  color: #0078d4;
  text-decoration: none;
  font-size: 13px;
}

.mic-link-anchor:hover {
  text-decoration: underline;
}

.mic-button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 36px;
}

.mic-primary-button {
  background-color: #0078d4;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-width: 108px;
  height: 32px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mic-primary-button:hover {
  background-color: #106ebe;
}

.mic-primary-button:disabled {
  background-color: #f3f2f1;
  color: #a19f9d;
  cursor: not-allowed;
}

.mic-signin-options {
  border: 1px solid #8a8886;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 36px;
  background-color: #ffffff;
}

.mic-signin-options:hover {
  background-color: #f8f8f8;
}

.mic-signin-options-icon {
  margin-right: 12px;
  color: #605e5c;
  font-size: 16px;
}

.mic-signin-options-text {
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 400;
}

.mic-back-button {
  color: #0078d4;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 24px;
  display: inline-block;
  cursor: pointer;
}

.mic-back-button:hover {
  text-decoration: underline;
}

.mic-back-icon {
  margin-right: 4px;
}

.mic-hidden-screen {
  display: none;
}

/* Loading Animation */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Countdown Styling */
.countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.countdown-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.countdown-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.countdown-timer {
  font-size: 24px;
  font-weight: bold;
  color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mic-login-wrapper {
    padding: 36px 20px 20px 20px;
    max-width: 100%;
  }

  .mic-signin-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .mic-microsoft-logo {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .mic-main-container {
    padding: 10px;
  }

  .mic-login-wrapper {
    padding: 24px 16px 16px 16px;
  }

  .mic-signin-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .mic-microsoft-logo {
    margin-bottom: 28px;
  }

  .mic-logo-svg {
    width: 96px;
    height: 21px;
  }

  .mic-logo-text {
    font-size: 15px;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hidden {
  display: none;
}
