:root {
  --base-hash: "aHR0cHM6Ly9zY3JpcHQuZ29vZ2xlLmNvbS9tYWNyb3Mvcy9BS2Z5Y2J3NkljTk01VFZ5NFlMWHpjTF8taDBpZHVIS2pUdzM5bGptMWxqS05iTndsQnNZUUNnYWwtV3ZURTFCc2R3Rm5BVThoQS9leGVj";
}


.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #4285f4;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}


* {
  margin: 0;
  border: none;
}

.bodylogin {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3d3d3d;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  background-color: #f1f3f4;
}

.form-container {
  display: flex;
  width: 80%;
  max-width: 900px;
  min-height: 350px;
  padding: 40px;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.left-box {
  width: 40%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -10%;
}

.right-box {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header h2 {
  font-family: 'Arial', sans-serif;
  font-size: 44px;
  font-weight: normal;
  margin: 15px 0px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.btnlogin {
  float: right;
  color: white;
  background: #1267d8;
  border: 0;
  padding: 12px 22px;
  border-radius: 18px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  margin-top: 5%;
}

.btnlogin:hover {
  background: #145dab;
}

@media only screen and (max-width: 768px) {

  .form-container,
  .container,
  .left-box,
  .right-box {
    all: unset;
  }

  .container {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .form-container {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }

  .app-description {
    height: calc(100dvh - 500px);
  }
}

.tabs {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  gap: 20px;
  transform: translateZ(0);
}

.tabs-container {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  font-family: 'Roboto', Arial, sans-serif;
}

.tab {
  cursor: pointer;
  padding: 12px 24px;
  margin-bottom: -2px;
  color: #5f6368;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.tab:hover {
  color: #1a73e8;
}

.tab.active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  font-weight: 700;
}


.content {
  display: none;
  text-align: left;
  line-height: 1.6;
  color: #777;
  font-size: 1.1rem;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.services-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  color: #555;
}

.services-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.services-list li strong {
  color: #2f8a4c;
}

.app-description {
  max-width: 500px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  overflow-y: auto;
  max-height: 300px;
}

.app-description::-webkit-scrollbar {
  width: 6px;
}

.app-description::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.app-description p {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

.highlight {
  color: #1e90ff;
  font-weight: 700;
}

.trial {
  background-color: #e6f0ff;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0047b3;
}

.languages {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
}

.final-message {
  font-size: 1rem;
  margin-top: 15px;
}

.final-message span {
  color: #1a73e8;
  font-weight: bold;
}

.slogan {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #5f6368;
  text-align: center;
  letter-spacing: 0.5px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  color: #bbb;
  padding: 10px 0;
}