/* Layout containers */
.page-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.version-container {
  padding: 0.75rem;
  background-color: #e0eefd;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  border-left: 6px solid #0053a2;
}

.version-text {
  display: flex;
  flex-direction: column;
}

.version-title {
  font-size: 1.075rem;
  font-weight: 500;
}

.content-container {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  margin: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

/* Welcome section */
.welcome-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
}

.welcome-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.welcome-title {
  font-size: 1.875rem;
  font-weight: 500;
}

.welcome-description {
  font-size: 0.875rem;
  white-space: normal;
  word-wrap: break-word;
}

.welcome-icon {
  flex: 1;
}

.welcome-image {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Buttons */
.actions-container {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}

.btn-signin {
  font-size: 1rem;
  background-color: #0053a2;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

.btn-guide {
  font-size: 1rem;
  background-color: #fff;
  color: #0053a2;
  border: 2px solid #0053a2;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

/* Tutorial */
.tutorial-container {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.tutorial-title {
  font-size: 1.075rem;
  font-weight: 500;
}

/* Contact */
.contactus-container {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

/* Section layout */
.sectionBlockLayout {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 8px;
  min-height: auto;
}

.columnBlockLayout {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
