html {
    height: 100%;
    font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background: #f8f8f8;
  color: #333;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}


h1, h2, h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 80px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.masthead nav a {
  color: #fb3c6c; /* цвет шрифта верхнего меню */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.masthead nav a:hover {
  color: #1fb378 /* при наведении */
}


.masthead .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 16px 32px;
  margin: auto;
}
.masthead .logo img {
  max-height: 40px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  padding: 0 10px; 
}
nav ul li a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  
}



.btn, .green-btn, .register-btn {
  background: linear-gradient(to right, #52d1dc, #3fd598);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
}

#register {
  margin: 80px auto 0 auto; 
  height: 468px;
  background: url('img/bg-banner.jpg') no-repeat center center;
  background-size: auto 630px;
  overflow: hidden;
  max-width: 1440px;
  padding-top: 80px; /* ← Сдвигаем контент вниз, чтобы не перекрывался меню */
}



/* контент внутри баннера */
#register .registration-content {
  max-width: 1200px;      /* ровно как у .ladies-scroll */
  margin: 0 auto;         /* центрируем по горизонтали */
  padding: 80px 20px;     /* верх/низ – 80px, боковые – 20px */
  display: flex;
  flex-wrap: wrap;        /* если узко — переносим блоки */
  gap: 40px;              /* отступ между текстом и формой */
  box-sizing: border-box; /* чтобы padding не «подъедал» ширину */
  align-items: flex-start;
}


.banner-text {
  flex: 1;
  color: #fff;
}
.banner-text h1 {
  font-size: 32px;
  margin-bottom: 1rem;
}
.banner-text p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.registration {
  flex: 0 0 340px;
  background: rgba(255,255,255,0.95);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.registration form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.registration input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.top-ladies {
  padding: 40px 20px;
  text-align: center;
}
.top-ladies h2 {
  font-size: 24px;
  color: #c89b3c;
  margin-bottom: 24px;
}
.ladies-scroll {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  max-width: 1062px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card:hover .card-photo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.card-photo {
  width: 100%;
  height: 282px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 8px;
}


.location {
  font-size: 12px;
  color: #666;
}

.verified-name::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 15px;
  background-image: url('/img/verified-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -2px;
  margin-left: 2px;
}



@media (max-width: 1023px) {
.ladies-scroll {
	max-width: 900px;
    grid-template-columns: repeat(4, 1fr);
	}

}
@media (max-width: 900px) {
.ladies-scroll {
	gap: 5px;
	}
}
@media (max-width: 767px) {
.ladies-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 724px) {
  .banner-text {
    display: none;
  }
}

@media (max-width: 600px) {
.ladies-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
.ladies-scroll {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 279px) {
.ladies-scroll {
    grid-template-columns: 1fr; /* ← по одной карточке в ряд */
  }
.card-photo {
   width: 250px;
   }	
}


/*.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  text-align: center;
}
*/



.name {
  display: inline-block;  /* позволяет тексту и иконке быть в одной строке */
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;     /* предотвращает перенос */
}

.card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.card .name {
  display: block;
  padding: 8px;
  font-weight: bold;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.card-link:hover .card-photo {
  opacity: 0.9;
  transition: opacity 0.3s;
}

.card-link:hover .name {
  color: #d83d5a;
}

#ladies-anchor {
  scroll-margin-top: 80px;
  display: block;
  height: 1px;
}


.registration {
  max-width: 380px;
  background: rgba(255,255,255,0.9);
  background-color: #fdfdfd;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  font-family: 'Open Sans', sans-serif;
  margin-top: -120px;
  text-align: left;
}

.registration h2,
.registration .form-subtext,
.registration form,
.registration label,
.registration .form-agree {
  text-align: left !important;
}

.registration h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #222;
  
}

.form-subtext {
  font-size: 14px;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

.registration label {
  font-size: 12.5px;
  margin: 6px 0 5px;
  display: block;
  color: #555;
  font-weight: 500;
}

.registration input {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1px;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

.registration button.green-btn {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  background-color: #54c485;
  border: none;
  border-radius: 32px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.1s ease;

  display: inline-block;
  margin-left: auto;     /* ← ключ! */
  margin-right: 0;
}

.registration button.green-btn:hover {
  background-color: #46b173;
  transform: translateY(-1px);
}


.form-agree {
  font-size: 11.5px;
  color: #666;
  margin-top: 16px;
  line-height: 1.45;
  text-align: center;
}

.form-agree a {
  color: #0091ce;
  text-decoration: underline;
  font-weight: 500;
}

/* Показываем бургер только на мобилках */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 10;
}

/* Мобильная навигация */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .masthead nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 12px 18px;
    z-index: 9;
  }

  .masthead nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .masthead.show nav {
    display: block;
  }

  .masthead .btn {
    display: none; /* скрываем кнопку на мобилках или перемещаем внутрь меню */
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0 20px;
  font-family: 'Open Sans', sans-serif;
}

.pagination .page {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  background-color: #f1f1f1;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.pagination .page:hover {
  background-color: #ddd;
  transform: translateY(-1px);
}

.pagination .active {
  background-color: #c89b3c;
  color: white;
  font-weight: 700;
}

.pagination .dots {
  font-size: 18px;
  color: #888;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .profiles-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .profiles-list .profile-item {
    width: 48%;
    margin-bottom: 1.5rem;
  }

  .profiles-list .profile-item:nth-child(2n + 1) {
    margin-left: 0;
  }
}
/* текст и фото*/


.text-float-image {
  max-width: 960px;
  margin: 60px auto;
  font-size: 18px;
  color: #444
  line-height: 1.7;
  padding: 0 20px;
  text-align: left;
}

.text-float-image h2 {
  font-size: 24px;
  color: #c89b3c;
  margin-bottom: 24px;
}

.float-img {
  float: left;
  width: 200px;
  max-width: 200px;
  height: auto;
  margin: 0 20px 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Чтобы красиво перестраивалось на мобилках */
@media (max-width: 600px) {
  .float-img {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}


  .text-float-image {
    text-align: left;
  }

.icon-row {
  display: flex;
  justify-content: space-between; /* равномерно растянем по ширине */
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 32px;
  box-sizing: border-box;
  text-align: center; /* добавляем — важен для подписи! */
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← выравнивает и иконку, и подпись */
  flex: 1 1 0;
  min-width: 120px;
  max-width: 180px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}


.icon-item img {
  width: 55px;
  height: 65px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
	
	.icon-item img {
  width: 40px;
  height: 40px;
	margin-bottom: 10px;}
	
  .icon-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .icon-item {
    flex: 0 0 100px;
    font-size: 14px;
  }
}

/* lady page start*/



body.lady-page {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  display: flex;             /* ← ключ! превращает body в горизонтальный контейнер */
  min-height: 100vh;         /* чтобы не обрезалось */
}

.content {
  flex: 1;                   /* ← занимает всё оставшееся место справа */
  padding: 30px;
  background: #f9f9f9;
  overflow-y: auto;
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #fff;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: none;
}

.logo-block {
  padding: 30 0px;
  text-align: center;
  margin-bottom: 25px;
}

.logo-img {
  max-width: 185px;
  height: auto;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

.btn-signin,
.btn-signup {
  display: block;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.btn-signin {
  background: linear-gradient(to right, #52d1dc, #3fd598);
}

.btn-signup {
  background: linear-gradient(270deg, #FB3C6C 0%, #FEB9CA 100%) !important;
}

.btn-signin:hover,
.btn-signup:hover {
  transform: scale(1.03);
}

/* 🔹 Вертикальное главное меню */
.main-menu {
  margin-top: 5px;
  display: block;
  width: 100%;
}

.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block; /* важно! */
}

.main-menu li {
  display: block;
  margin-bottom: 14px;
}

.main-menu a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-menu a:hover {
  background-color: #eafaf8;
  color: #00a4cc;
}

.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* one-time-offer*/


.one-time-offer {
  margin-top: 30px;
  font-family: 'Open Sans', sans-serif;
}

.offer-banner-wrap {
  position: relative;
  width: 100%;
}

.offer-banner {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* уголок */

.offer-banner-wrap {
  position: relative;
  width: 200px;
}

.overlay-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* 🔹 Оверлейный текст поверх изображения */
.offer-overlay-content {
  margin-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* предотвратить блокировку кликов по баннеру */
}

/* 🔹 Текст и кнопка */
.offer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.offer-description {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.offer-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffe29f;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.offer-price small {
  text-decoration: line-through;
  font-size: 18px;
  margin-right: 5px;
  color: #ddd;
}

.offer-btn {
  background: linear-gradient(to right, #52d1dc, #3fd598);
  color: #fff;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto; /* восстановим кликабельность */
}

.years {
  position: relative;
  background: #f6f6f6 url(../img/logo-yrs-loveStories.svg) no-repeat center / 90%;
  margin: 20px 5px 30px;
  border-radius: 10px;
  height: 75px;
  cursor: pointer;
 /* text-indent: -1000px; */
}

/* sweet or hot */
.sweet-or-hot {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  padding: 10px;
  text-align: center;
  margin: 20px 5px 30px;
  font-family: 'Open Sans', sans-serif;
}

.sweet-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.sweet-img {
  width: 100%;
  height: auto;
  display: block;
}

.sweet-icons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.icon {
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}

.icon.like {
  background-image: url('img/sh-like-icon.svg');
}
.icon.dislike {
  background-image: url('img/sh-next-icon.svg');
}
.icon.share {
  background-image: url('img/sh-share-icon.svg');
}

.sweet-meta {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
}

.sweet-meta strong {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2px;
}

/* 🔹 Надпись в верхней части фото */
.sweet-or-hot__top {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  background: transparent;
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.burger-lady {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  color: #333;
}

.mobile-topbar {
  display: none;
}


@media (max-width: 1024px) {
  .mobile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

.burger-lady {
  display: block;
  position: absolute;
  top: 8px;                /* чуть выше, чтобы перекрывать */
  left: 8px;
  width: 46px;             /* ширина фона бургер-кнопки */
  height: 46px;
  background-color: #fff;  /* ← белый фон */
  border-radius: 50%;      /* кружок */
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  color: rgb(251, 60, 108); /* цвет самих полосок */
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  z-index: 10000;
  cursor: pointer;
  border: none;
}



  .logo-wrapper img.logo-img-small {
    max-height: 36px;
  }

  .topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .topbar-right {
    display: flex;
    gap: 18px;
  }

  .icon-btn {
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
  }

  .mail-icon, .chat-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

.mail-icon {
  width: 28px;
  height: 28px;
  background-image: url('img/mail-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

  
.mail-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43.6px;
  height: 43.6px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  padding: 0;
  cursor: pointer;
  opacity: 0.8;
  border: none;
}



.chat-icon {
  width: 26px;
  height: 20px;
  background-image: url('img/chat-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}




.chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 43.6px;
  height: 43.6px;
  border-radius: 50%;
  background-image: linear-gradient(to right, rgb(82, 209, 220), rgb(63, 213, 152));
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
  cursor: pointer;
  padding: 0;
  border: none;
}



  .badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #fb3c6c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
  }

  /* Скрываем обычную .sidebar */
  .sidebar {
    display: none;
  }

  .sidebar.show-sidebar {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    max-width: 220px;
    height: calc(100% - 60px);
    background: #fff;
    z-index: 9998;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow-y: auto;
  }
}





/*About start*/

.profile-info {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;                  /* 📱 По умолчанию — мобильный */
  display: grid;
  grid-template-columns: 1fr;         /* Одна колонка по умолчанию */
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #252525;
}

.profile-info li span {
  color: #929292;
  font-weight: 400;
  min-width: 140px;
}

/* 📱 До 450px */
@media (max-width: 450px) {
  .profile-info {
    font-size: 1.6rem;
    grid-template-columns: 1fr;
  }
}

/* 📱 До 767px */
@media (max-width: 767px) {
  .profile-info {
    font-size: 1.6rem;
    grid-template-columns: 1fr;
  }
}

/* 💻 От 768px — три колонки и новый размер шрифта */
@media (min-width: 768px) and (max-width: 1230px) {
  .profile-info {
    font-size: 1.2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 💻 От 1231px до 1300px */
@media (min-width: 1231px) and (max-width: 1300px) {
  .profile-info {
    font-size: 1.4rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 🖥️ От 1301px и выше */
@media (min-width: 1301px) {
  .profile-info {
    font-size: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

/*About2 start*/

.profile-about-block {
  margin-bottom: 20px;
}

.profile-about-block h3 {
  font-size: 1.6rem;
  color: #252525;
  font-weight: 600;
  margin-bottom: 6px;
}

.profile-about-block p {
  font-size: 1.4rem;
  color: #252525;
  line-height: 1.5;
}


/* lady page end */


/* reg pop-up */

.auth-lead {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.auth-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
}

.auth-modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.auth-modal-box {
  position: relative;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #FB3C6C;
  cursor: pointer;
}

.auth-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.auth-title span {
  white-space: nowrap;
  color: #FB3C6C;
}

.auth-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.auth-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #FB3C6C;
}

.auth-info {
  text-align: left;
}

.auth-name {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FB3C6C;
}

.auth-location {
  margin: 4px 0 0;
  font-size: 0.95em;
  color: #555;
}

.auth-text {
  font-size: 0.95em;
  margin: 15px 0;
}

.auth-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.auth-btn {
  padding: 10px 18px;
  background: #ccc;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.auth-btn.primary {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
}

.auth-note {
  font-size: 0.8em;
  color: #777;
}

.auth-modal-box.split-layout {
  max-width: 660px;
  width: 95%;
  padding: 40px 30px;
}

.auth-content {
  display: flex;
  gap: 40px;
  width: 100%;
  margin-top: 20px;
}

.auth-form-side {
  flex: 2;
  text-align: left;
}

.auth-profile-side {
  flex: 1;
  text-align: center;
}

.auth-form-side form input {
  width: 100%;
  padding: 14px 16px; /* увеличим высоту и отступы */
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.auth-form-side form button.green-btn {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 32px;
  margin-top: 10px;
}

.auth-avatar-large {
  width: 200px;
  height: 304px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: block;
}



/* reg pop-up end */