.app-entry-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 100vw;
    background-color: #fff;
    align-self: center;
}

.app-entry_header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.app-entry_header.noswiping {
    padding: 64px 16px 24px 16px;
}

.app-entry_header .app-entry_header-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-entry_header .app-entry_header-content.absolute {
    position: absolute;
    z-index: 999;
    bottom: 16px;
    padding: 16px;
}

.app-entry_header .app-entry_header-logo {
    max-width: 60%;
    height: auto;
}

.app-entry_header .app-entry_header-text {
    text-wrap: balance;
    font-size: 1.1rem;
    font-weight: 600;
}

.app-entry_header .app-entry_swiper-container {
  overflow: hidden;
  width: 100%;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.app-entry_header .app-entry_swiper-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  touch-action: pan-y;
}

.app-entry_header .app-entry_swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.app-entry_header .app-entry_swiper-slide .app-entry_swipper-img {
  max-width: 100%;
  min-height: 100%;
  height: auto;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.app-entry_header .app-entry_swiper-slide p.app-entry_swipper-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-entry_header .app-entry_swiper-slide p.app-entry_swipper-description {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    text-wrap: balance;
}

.app-entry_dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.app-entry_dot.active {
  background-color: #0f7bf6;
}

.app-entry_main-container {
    flex-grow: 1;
    padding: 0 16px 16px 16px;
}

.app-entry_select-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 100%;
    height: 100%;
    position: relative;
}

.app-entry_form-container
 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    position: relative;
}

#app-entry_display-logup-form,
#app-entry_display-login-form {
    display: none;
    color: rgb(90, 5, 5);
    font-size: 0.9rem;
    font-weight: 400;
}

.app-entry_select-btns {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
}

.app-entry_select-btns button.app-entry_select-login-btn,
.app-entry_select-btns button.app-entry_select-signup-btn {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 99px;
    font-size: 1.1rem;
}

.app-entry_select-btns button.app-entry_select-login-btn {
    background-color: #0f7bf6;
    color: #fff;
}

.app-entry_select-btns button.app-entry_select-signup-btn {
    background-color: #e0e0e0;
    color: #212121;
}

.app-entry_popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(2px) saturate(80%);
    display: flex;
    align-items: flex-end;
}

.app-entry_popup-cookies {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    padding-bottom: 48px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
}

.app-entry_popup-cookies-header {
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 16px;
}

.app-entry_popup-cookies-header button.app-entry_popup-cookies-nonaccepted {
    border: none;
    background-color: transparent;
    color: #0f7bf6;
    font-size: 0.9rem;
	padding: 0px;
}

.app-entry_popup-cookies-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.app-entry_popup-cookies-main p.app-entry_popup-cookies-text {
    font-size: 0.85rem;
    color: #666;
}

.app-entry_popup-cookies-main button.app-entry_popup-cookies-accepted {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background-color: #0f7bf6;
    color: #fff;
    font-size: 1rem;
}

.app-entry_form-container .app-entry_login-form_container,
.app-entry_form-container .app-entry_signup-form_container {
    width: 100%;
}

.app-entry_form-container .app-entry_login-form_container #login-form,
.app-entry_form-container .app-entry_signup-form_container #logup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.app-entry_form-container .app-entry_login-form_container #login-form input[type=text],
.app-entry_form-container .app-entry_login-form_container #login-form input[type=password],
.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=text],
.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=password],
.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=email],
.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=tel] {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}

.app.app-entry_form-container .app-entry_login-form_container #login-form input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.app-entry_form-container .app-entry_signup-form_container #logup-form .app-entry_form-buttons-container,
.app-entry_form-container .app-entry_login-form_container #login-form .app-entry_form-buttons-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-entry_form-container .app-entry_signup-form_container #logup-form label {
    font-size: 0.75rem;
}

.app-entry_form-container .app-entry_signup-form_container #logup-form label a {
    color: #0f7bf6;
    text-decoration: none;
}

.app-entry_form-container .app-entry_login-form_container #login-form input[type=submit],
.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=submit] {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 99px;
    background-color: #0f7bf6;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;    
}

.app-entry_form-container .app-entry_signup-form_container #logup-form input[type=button],
.app-entry_form-container .app-entry_login-form_container #login-form input[type=button] {
    background-color: #e0e0e0;
    color: #212121;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 99px;
    font-size: 1rem;
    cursor: pointer; 
}

.app-entry_form-container .app-entry_login-form_container #login-form p.app-entry_login-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.app-entry_form-container .app-entry_login-form_container #login-form p.app-entry_login-text a {
    color: #0f7bf6;
    text-decoration: none;
    margin: 0;
}

.app-entry_actions-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.app-entry_actions-btns button.app-entry_action-new-claim-btn,
.app-entry_actions-btns button.app-entry_action-chat-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 99px;
    font-size: 1.1rem;
    cursor: pointer;
}

.app-entry_actions-btns button.app-entry_action-new-claim-btn {
    background-color: #0f7bf6;
    color: #fff;
}

.app-entry_actions-btns button.app-entry_action-chat-btn {
    background-color: #e0e0e0;
    color: #212121;
}