html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: var(--default-font-family, Inter);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
  "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
  "Source Han Sans CN", sans-serif, "Inter";
  --bg-grey-lite: rgb(169, 185, 197, 0.2);
  --bg-grey: rgb(169, 185, 197);
  --bg-green-lite: rgba(111, 153, 84, 0.2);
  --bg-green: rgb(111, 153, 84);
  --bg-red-lite: rgb(255, 159, 159);
  --bg-red: #ff5252;
  --bg-yellow: rgb(255, 202, 40);
  --bg-black: rgb(38, 50, 56);
  --bg-transparency: rgba(255, 255, 255, 0.35);
  --bg-blue: rgb(71, 176, 255);
}

body {
    background-color: #f3f6f8;
    overflow: auto; 
}

main {
    margin: auto 0;
}

.main-container p {
    margin: 0;
}

.main-container {
    max-width: 600px;
    margin: 0 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.header-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
}

.logo-image {
    margin-top: 50px;
    max-width: 150px;
    height: auto;
    cursor: pointer;
}

.main-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    gap: 10px;
}

.notification-status-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 36px;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 12px;
    background-color: #ffffff;
    border: 1.5px solid rgba(17, 16, 17, 0.1);
}

.main-section {
    padding: 0 15px 50px 15px;
}

.auth-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 50px;
    gap: 15px;
    padding: 0 20px 30px 20px;
    border-radius: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.notification-content {
    background-color: #ffffff;
    margin-top: -30px;
    padding: 20px 15px 20px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    background: 
    radial-gradient(
        80px 80px at 93% 25%,
        rgba(255, 255, 255, 0.402) 0 55%, 
        transparent 56%
    ),
    linear-gradient(90deg, #6AE268 0%, #25C1AD 84%, #12C2E9 100%);
    color: #ffffff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px; 
    z-index: 1;
}

.header-content > * {
    position: relative;
    z-index: 2;
}

.transparency-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-transparency);
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #dbdbdb;
}


.notification-icon {
    background-image: url('../img/notification-icon-img.png');
    background-size: cover;
    width: 30px;
    height: 30px;
}

.header-content h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.text-box-body {
    position: relative;
    padding: 10px;
    border: 2px dashed var(--bg-grey);
    min-height: 150px;
    margin-top: 10px;
    border-radius: 16px;
    box-shadow: 0 13px 12px rgba(0, 0, 0, 0.25);
}

.text-box-footer {
    position: absolute;
    bottom: 5px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 36px;
    gap: 5px;
    background-color: var(--bg-grey-lite);
    border: 1px solid var(--bg-grey);
    font-size: 12px;
}

.notification-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 17px;
}

.group-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 5px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
}

.group-control span {
    font-size: 13px;
    font-weight: 500;
}

.confirm-button {
    background-color: var(--bg-green-lite);
    border: 2px solid var(--bg-green);
}

.relocate-button {
    background-color: var(--bg-grey-lite);
    border: 2px solid var(--bg-grey);
}

.cancel-button {
    background-color: var(--bg-red-lite);
    border: 2px solid var(--bg-red);
}

.relocate-button svg {
    margin-bottom: 2px;
}

.info-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 13px 12px rgba(0, 0, 0, 0.25);
  background: center/cover no-repeat;
  border: 2px solid #ffb400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 15px;
  cursor: pointer;
  animation: border-color-animation 3s infinite;
}

.info-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.668);
}

.info-item-badge {
    position: absolute;
    top: 12px;
    left: 16px;
    background: #2f323a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    min-width: 80px;
    border-radius: 10px;
    z-index: 2;
}

.info-item-content {
    position: relative;
    z-index: 2;
    padding-bottom: 24px;
    width: 100%;
}

.info-item-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 14px 0;
}

.info-item-progress {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.line {
    width: 54px;
    height: 4px;
    background-color: var(--bg-black); 
    border: 2px solid #3A454B;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.line.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0; 
    background-color: #ffb400;
    border-radius: 10px;
    animation: fill-line 6s forwards;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.group-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--bg-grey);
    border-left: none;
    border-radius: 10px;
    height: 30px;
    min-width: 120px;
    gap: 5px;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.link-text {
    font-size: 11px;
    font-weight: 500;
}

.link-text span {
    display: block;
    font-size: 8px;
}

.transparency-layer.blue-bg {
    background-color: var(--bg-blue);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 30px;
    padding: 0 5px;
}

.modal-layer.blue-bg {
   height: 35px;
   padding: 0 10px;
}

.transparency-layer.green-bg {
    background-color: rgb(210, 232, 200, 0.35);
    border: 1px solid var(--bg-green);
    height: 30px;
    padding: 0 5px;
}

.modal-layer.green-bg {
   height: 35px;
   padding: 0 10px;
}

.transparency-layer.red-bg  {
    background-color: #F56870;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 30px;
    padding: 0 5px;
}

.modal-layer.red-bg {
   height: 35px;
   padding: 0 10px;
}

.scroll-confirm-button {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #ccc;
    border: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    touch-action: none; 
}

.scroll-confirm-button .scroll-bar {
    position: absolute;
    inset: 0;
}

.scroll-confirm-button span {
  position: relative;
  z-index: 1;
}

.scroll-confirm-button .scroll-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 53px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 3;
}

.scroll-handle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-confirm-button .scroll-handle:active {
    cursor: grabbing;
}

.scroll-confirm-button .scroll-labels {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    z-index: 1;
}

.notification-status-icon {
    background: url('../img/notification-status-icon.svg') no-repeat center;
    background-size: cover;
    width: 19px;
    height: 19px;
    animation: rotate-animation 4s linear infinite;
}

.confirmation-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-wrap: nowrap;
}

.notification-status-icon.status-false {
    filter: saturate(100%) brightness(70%) sepia(100%) hue-rotate(-50deg);
}

.handle-indicator {
    background: url('../img/scroll-icon.svg') no-repeat center;
    width: 30px;
    height: 30px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

}

.message-icon {
    background-image: url('../img/message-icon.svg');
    background-size: cover;
    width: 14px;
    height: 14px;
}

.confirm-icon, .task-complete-icon {
    background-image: url('../img/confirm-icon.svg');
    background-size: cover;
    width: 17px;
    height: 17px;
}

.error-complete-icon {
    background-image: url('../img/cancel-icon.svg');
    background-size: cover;
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

.text-content-popup {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.task-complete-icon {
    filter: brightness(0) invert(1);
}

.relocate-icon {
    background-image: url('../img/relocate-icon.svg');
    background-size: cover;
    width: 17px;
    height: 17px;
    margin-bottom: 2px;
}

.cancel-icon {
    background-image: url('../img/cancel-icon.svg');
    background-size: cover;
    width: 17px;
    height: 17px;
}

.telegram-icon {
    background-image: url('../img/telegram-icon.svg');
    background-size: cover;
    width: 18px;
    height: 18px;
}

.modal-layer .telegram-icon {
    width: 23px;
    height: 23px;
}

.whatsapp-icon {
    background-image: url('../img/whatsapp-icon.svg');
    background-size: cover;
    width: 18px;
    height: 18px;
}

.modal-layer .whatsapp-icon {
    width: 23px;
    height: 23px;
}

.phone-icon {
    background-image: url('../img/phone-icon.svg');
    background-size: cover;
    width: 18px;
    height: 18px;
}

.modal-layer .phone-icon {
    width: 23px;
    height: 23px;
}

.no-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.no-content p {
    font-size: 16px;
    font-weight: 500;
}

.notification-content-image {
    height: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: #ffffff;
    padding-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reduced-width-modal {
    max-width: 400px;
    background-color: rgb(255 255 255 / 65%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.modal-image {
    position: relative;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-description {
    padding: 0 10px;
}

.modal-description p {
    font-size: 14px;
    font-weight: 400;
    color: #3A454B;
}

.info-block {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3A454B;
    padding: 5px 10px;
    border-radius: 10px;
    gap: 10px;
}

.separation-block {
    width: 1px;
    height: 20px;
    background-color: #ffffff; 
    display: inline-block;
}

.info-name-block, .type-info-block {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.info-name-block p, .type-info-block p {
    margin: 0;
}

.logo-icon__name-block {
    background-image: url('../img/notification-icon-img.png');
    background-size: cover;
    width: 25px;
    height: 25px;
}

.info-icon__type-info {
    background-image: url('../img/service-icon.svg');
    background-size: cover;
    width: 25px;
    height: 25px;
}

.modal-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.modal-close {
    padding: 4px 10px;
    background-color: #3A454B;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    z-index: 11;
}

.text-box {
    height: 100%;
    word-wrap: break-word;
    max-height: 120px;
    overflow-y: auto;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.text-box hr {
    border: none;
    height: 1px;
    margin: 8px 0; 
}

.popup-notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    border-radius: 15px;
    color: #ffffff;
    padding: 10px;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-content p {
    margin: 0;
    white-space: nowrap;
}

.logo-header {
    width: 180px;
    height: auto;
}

.auth-span {
    margin-bottom: 10px;
    font-family: Roboto, var(--default-font-family);
    font-size: 30px;
    font-weight: 500;
    line-height: 10px;
    white-space: nowrap;
}

.form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.form-label {
    font-family: Roboto, var(--default-font-family);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 5px;
    text-align: left;
    color: #3f4a56;
}

.form-input {
    display: flex;
    font-family: Roboto, var(--default-font-family);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    height: 48px;
    border: 2px solid #b6b6b6;
    border-radius: 15px;
    padding-left: 60px;
}

.form-input:focus {
    box-shadow: 0 0 10px rgba(70, 146, 252, 0.5);
    border: 2px solid #4691FC; 
    outline: none;
}

.form-input.error-input {
    border: 2px solid #f08786;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 10px;
}

.form-input-group .phone-prefix {
    position: absolute;
    left: 10px;
    transform: translateY(90%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333333;
    font-size: 14px;
    pointer-events: none;
}

.form-input-group .flag-country {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    background: linear-gradient( to bottom, #ffffff 0 33.33%, #0039A6 33.33% 66.66%, #D52B1E 66.66% 100% );
}

.form-input-group .code {
    font-weight: 600;
}

.info-input {
    font-family: Roboto, var(--default-font-family);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: #3f4a56;
}

.error-message-info {
  display: flex;
  justify-content: center;
  color: #f08786;
  font-family: Roboto, var(--default-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.login-button {
    width: 240px;
    height: 47px;
    border: none;
    cursor: pointer;
    background: #4691FC;
    border-radius: 27.5px;
    color: #ffffff;
    font-family: Roboto, var(--default-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 0.5;
    pointer-events: none;
}

.code-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.input-group-root {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.code-input {
    width: 45px;
    height: 65px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border: 2px solid #b6b6b6;
    border-radius: 15px;
}

.code-input:focus {
    box-shadow: 0 0 10px rgba(70, 146, 252, 0.5);
    border: 2px solid #4691FC; 
    outline: none;
}

.code-input.animate {
    border: 2px solid var(--bg-green);
    box-shadow: 0 0 10px rgba(85, 252, 70, 0.5);
    color: var(--bg-green);
    transition: all 0.2s ease;
}

.info-group-text {
    display: flex;
    align-items: center;
    text-align: left;
    color: #3f4a56;
    font-family: Roboto, var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
    border-radius: 15px;
    border: 1.5px solid #4692fc93;
    background-color: #4692fc2e;
    box-shadow: 0 0 10px rgba(70, 146, 252, 0.5);
    gap: 10px;
}

.info-icon {
    background-image: url('../img/message-icon.svg');
    background-size: cover;
    width: 20px;
    height: 20px;
}

.resend-button, .resend-phone-button {
    background: none;
    border: none;
    color: #3978cf;
    font-family: Roboto, var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
    padding: 0;
}

.time-text {
    color: #3978cf;
    font-family: Roboto, var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin: 0;
    text-align: center;
}

.back-button-info {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #b6b6b6; 
}

.back-icon {
    background: url('../img/arrow-back.svg') no-repeat center;
    background-size: inherit;
    width: 15px;
    height: 15px;
    transform: rotate(180deg);
}

.user-info-button {
    display: flex;
    align-items: center;
    color: #3f4a56;
    border-radius: 35px;
    border: 1.5px solid rgba(17, 16, 17, 0.1);
    padding-right: 5px;
    cursor: pointer;
    background-color: #ffffff;
    gap: 5px;
}

.user-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-family: Roboto, var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #3f4a56;
}

.logout-button {
    background: url('../img/exit-icon.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    border: none;
}

.exit-image {
    width: 120px;
    height: auto;  
    object-fit: contain;
}

.group-button-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.exit-button-modal, .back-button-modal {
    background-color: var(--bg-red);
    color: #ffffff;
    width: 105px;
    padding: 8px 0;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.back-button-modal {
    color: #ffffff;
    background-color: #9b9b9bb1;
}

.info-modal-text {
    margin-top: 0;
    font-family: Roboto, var(--default-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: #3f4a56;
}

.wave-animation {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 102, 102, 0.567); /* Светло-голубой цвет */
    transform: scale(0);
    animation: wave-expand 2s ease-out infinite;
    pointer-events: none; /* Чтобы волна не мешала кликам */
}

/* Анимация расширения волны */
@keyframes wave-expand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes border-color-animation {
  0% {
    border-color: #ffb400;
    box-shadow: 0 0 10px #ffb400;
  }
  50% {
    border-color: rgb(135, 135, 135);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    border-color: #ffb400;
    box-shadow: 0 0 10px #ffb400;
  }
}

@keyframes fill-line {
    0% {
        width: 0; 
    }
    100% {
        width: 100%;
    }
}

@media screen and (min-width: 0) and (max-width: 360px) {
    .notification-control {
        flex-wrap: wrap;
        justify-content: center; 
        gap: 10px;
    }
    .footer-content {
        flex-wrap: wrap;
        justify-content: center; 
        gap: 10px;
    }
    .scroll-confirm-button .scroll-labels {
        font-size: 12px;
    }

    .info-name-block p, .type-info-block p {
        font-size: 10px;
    }

    .info-name-block, .type-info-block {
        gap: 5px;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
   .footer-content {
        flex-wrap: wrap;
        justify-content: center; 
        gap: 10px;
   }
   .scroll-confirm-button .scroll-labels {
        font-size: 10px;
   }

   .code-input {
        width: 35px;
        height: 45px;
    }
    .input-group-root {
        gap: 5px;
    }

    .info-group-text p {
        font-size: 13px;
    }
    .notification-status p {
        font-size: 13px;
        text-align: center;
    }
    .main-header-content {
        padding: 0 10px;
    }
}

@media screen and (min-width: 600px) {
   .group-control {
       min-width: 170px;
   }
   .group-link {
        min-width: 160px;
        height: 40px;
   }
   .link-text {
        font-size: 14px;
   }
   .link-text span {
       font-size: 12px;
   }
   .transparency-layer.blue-bg {
        padding: 0 8px;
        height: 40px;
   }
   .transparency-layer.green-bg {
        padding: 0 8px;
        height: 40px;
   }
    .transparency-layer.red-bg  {
        padding: 0 8px;
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .auth-content {
       margin: 0 15px 0 15px;
    }
}
