﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
  --default-font: 'Poppins', sans-serif;
  --light-bgc: #f3f8fe;
  --light-txt: #262d3d;
  --light-container: #ffffff;
  --lightGrayColor: #ececec;
  --midGrayColor: #c0c0c0;
  --darkGrayColor: #62697a;
  --blueColor: #0075ff;
  --redColor: #e40c0c;
  --lightRedColor: #e40c0c14;

  --dark-bgc: #1b1c1e;
  --dark-txt: #ffffff;
  --dark-container: #2b2b2b;
  --darkBlueColor: #004eaa;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--default-font);
  width: 100%;
  height: 100%;
  background-color: var(--light-bgc);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--light-txt);
  padding: 100px 0;
  overflow: auto;
}
@media (max-height: 1020px) {
  .container {
    height: auto;
  }
}

@media (orientation: landscape) and (max-height: 567px) {
  .container {
    height: auto;
  }
}

.containerBox {
  width: 100%;
  min-height: 820px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  background-color: var(--light-container);
}
@media (min-width: 768px) {
  .containerBox {
    display: flex;
    flex-direction: row;
    width: 95%;
    min-height: 720px;
    border-radius: 20px;
  }
}

@media (min-width: 1155px) {
  .containerBox {
    width: 1085px;
  }
}
@media (min-width: 1440px) {
  .containerBox {
    width: 1240px;
  }
}

/* Left section */
.containerBox__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (min-width: 768px) {
  .containerBox__text {
    width: 50%;
  }
}

/* Image section */
.containerBox__image {
  display: none;
}
@media (min-width: 768px) {
  .containerBox__image {
    display: flex;
    width: 50%;
    align-items: stretch;
  }
}

.containerBox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.errors {
  display: flex;
  align-content: center;
  gap: 10px;
}

.errors img {
  display: block;
  height: 16px;
  margin-top: 2px;
  pointer-events: none;
  user-select: none;
}

.errors p {
  font-size: 14px !important;
  color: var(--redColor) !important;
  line-height: 21px !important;
  font-weight: 400 !important;
}
