:root {
    --bg-white: white;
    --bg-black: black;
    --bg-black-2: #12141f;

    --dark-selected: #32374c;
    --dark-hover: #1d1f2c;
    --dark-item: #1f2332;
    --dark-item-2: #32374c;
    --dark-icon: #696b7c;
    --dark-subtext: #bdc0d4b5;
    --dark-border: #242736;

  --primary-color: #720085;
  --background-color: #7200851A;
  --input-focus-border: var(--primary-color);
  --bg-blue-clear: #F8FAFD;
  --bg-blue-dark: #E9EEF6;
  --purple-dark: #720085;
  --purple-clear: #7200851A;
  --pink: #E6346C;
  --blue: #7D98C4;
  --selection-blue: rgba(0, 102, 255, 0.8);
  --selection-blue-2: #1D9BF0;
  --red-clear: #C60404;
  --orange: rgb(255, 115, 0);
  --green: #089d6f;
  --golden-yellow: #ffd700;
  --green-clear-2: #E6F9F3;
  --hover-color: #efefef;
  --ai-blue: #00dbde;
  --ai-pink: #fc00ff;
  --font-family: 'Roboto', sans-serif;
  --radius-mini: 8px;
  --radius-small: 10px;
  --radius-big: 15px;
  --radius-large: 20px;
  --transition-flash: 0.1s;
  --transition-fast: 0.2s;
  --transition-slow: 0.5s;
  --border-color: #E8EAF1;
  --gray-clear: #747474;
  --gray-clear-2: #F4F4F4;
  --font-gray: #575757;
  --font-gray-clair: #8C8C8C;
  --font-black: #1b1e20;
  --font-black-clair: #1F1F1F;
  --theme-color-elevation-shadow-rgb: 60,64,67;
  --dt-shadow-elevation-1: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --dt-surface3-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
  --facebook-color: #2C4AAA;
  --instagram-color: #CF1C96;
  --googleMyBusiness-color: #3D4DAB;
  --linkedin-color: #0077B5;
  --linkedinPages-color: #0077B5;
  --youtube-color: #C60404;
  --tiktok-color: #000000;
  --x-color: #000000;
  --pinterest-color: #BD081C;
  --threads-color: #000000;
  --snapchat-color: #FFFC00;
  --red-darkdit-color: #FF4500;
  --googlePhotos-color: #34A853;
  --canva-color: #2989DA;
  --googleDrive-color: #FFB700;
}
body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  height: 100vh;
  width: 100vw;
  margin: 0;
  overflow: hidden;
}
#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
#top-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#bottom-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  gap: 10px;
}
#mydrop_icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
#mydrop_icon img {
  height: 50px;
  width: auto;
}
#content-div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: auto;
}
#content-left,
#content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}
#mydrop_banniere {
  height: auto;
  max-width: 500px;
  width: 90%;
}
#languageSelector {
  height: 30px;
  width: 100px;
  text-align: center;
  border-radius: 10px;
  border: none;
  background-color: transparent;
  font-weight: 600;
  color: var(--font-gray);
  outline: none;
  cursor: pointer;
}


#loginForm,
#register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 450px;
  height: auto;
  background-color: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
  padding: 30px;
  box-sizing: border-box;
  gap: 15px;
}
#loginForm h1,
#register-form h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--font-black);
    align-self: flex-start;
    margin: 0;
}

.input-div {
    position: relative;
    width: 100%;
    color: var(--font-black);
    height: auto;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
    gap: 4px;
    overflow: hidden;
}

input {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  outline: none;
  padding-left: 10px;
  box-sizing: border-box;
}
input::placeholder {
    color: #8C8C8C;
    font-size: 12px;
    font-weight: 500;
}


.spinner-box {
  display: none;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  background-color: var(--bg-white);
  transition: background-color 0.2s ease-in-out;
}
.spinner-border {
    display: inline-block;
    color: var(--primary-color);
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.3s linear infinite;
    width: 20px;
    height: 20px;
}
[data-spinner="survey"] {
  width: 150px !important;
}
@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

#line-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#line-text:before,
#line-text:after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
    margin: 0 20px;
    width: 88px;
}
#line-text p {
    font-size: 13px;
    font-weight: 400;
    color: var(--font-gray);
    margin: 0;
}
.error {
    color: red;
    margin-top: 10px;
}
.go_with {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.go-with-div {
  display: flex;
  align-items: center;
  justify-content: center;
    width: 100%;
  height: 50px;
}
.go-with-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 10px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  color: var(--bg-white);
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out;
}
.go-with-button p {
    font-size: 14px;
    font-weight: 500;
    color: #575757;
}
.go-with-button[data-value="email"] {
  background-color: var(--primary-color);
}
.go-with-button[data-value="email"]:hover {
  background-color: #9c09b6;
}

.go-with-button[data-value="google"] {
  border: 1px solid  var(--bg-black);
}
.go-with-button[data-value="google"]:hover {
  background-color: var(--border-color);
}
.go-with-button[data-value="facebook"] {
  background-color: #2C4AAA;
}
.go-with-button[data-value="facebook"]:hover {
  background-color: #1A2D6D;
}
.go-with-button[data-value="facebook"] p {
  color: var(--bg-white);
}
.go_with_icon {
  height: 20px;
  width: auto;
}
.dont_have {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--font-black);
    gap: 8px;
}

.dont_have p {
  margin: 0;
}

.policy-buttons-div,
.language-select-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5x;
}








@media (max-width: 768px) {
  #content-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }

  #content-left {
    display: none;
  }

  #content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    box-sizing: border-box;
  }
  #bottom-bar {
    flex-direction: column;
  }
  .rs-modal {
    width: 95%;
    height: 95%;
  }
  .rs-question {
    padding: 15px;
  }
  .rs-progress-container {
    padding: 20px 0;
  }
  .rs-progress-wrapper {
    padding: 0 20px;
  }
  .rs-progress-bar {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  .rs-option-content {
    padding: 10px;
  }
  .rs-option-content {
    justify-content: center;
  }
  .rs-option-text {
    text-align: center;
  }
  .rs-actions {
    justify-content: space-evenly;
    gap: 0;
  }
  .rs-textarea-container {
    width: 100%;
  }
}

.iub__us-widget,
.iubenda-tp-btn.iubenda-cs-preferences-link,
.iubenda-tp-btn-container {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}