.layout {
    display: grid; /* Udělá z kontejneru grid kontejner */
    gap: 10px; /* Mezera mezi řádky a sloupci */
    align-items: start; /* Zarovná položky v rámci řádků nahoře */
    /* Další styly pro .layout */
}

.card-title {
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.small-desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: #452c2c;
}

.card {
  display: block;
  position: relative;
  max-height: 400px;
  background-color: #f2f8f9;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
}

.card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #364a60, #384c6c);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.6s ease-out;
}

.card2:hover:before {
  transform: scale(10);
}

.card:hover:before {
  transform: scale(100);
}

.card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}

.form-container {
  max-width: 400px;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow:
    0px 0px 3px rgba(0, 0, 0, 0.084),
    0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container button:active {
  scale: 0.95;
}

.form-container .logo-container {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.form-container .form {
  display: flex;
  flex-direction: column;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: inherit;
  border: 1px solid #ccc;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #1778f2;
}

.form-container .form-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  color: #fff;
  background-color: #212121;
  border: none;
  width: 100%;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin: 12px 0;
  cursor: pointer;
  border-radius: 6px;
  box-shadow:
    0px 0px 3px rgba(0, 0, 0, 0.084),
    0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container .form-submit-btn:hover {
  background-color: #313131;
}

.form-container .link {
  color: #1778f2;
  text-decoration: none;
}

.form-container .signup-link {
  align-self: center;
  font-weight: 500;
}

.form-container .signup-link .link {
  font-weight: 400;
}

.form-container .link:hover {
  text-decoration: underline;
}

#pricing h2 {
   font: 22px/30px 'opensans-bold', sans-serif;
   color: #1b263b;
   margin-bottom: 12px;
}
#pricing p {
   line-height: 30px;
    color: #1b263b;
}

#pricing {
   position: relative;
   padding-top: 96px;
   padding-bottom: 66px;
   overflow: hidden;
}

#contact {
   position: relative;
   background: #1b1b1b;
   padding-top: 96px;
   padding-bottom: 66px;
   overflow: hidden;
}

#contact h2 {
   font: 22px/30px 'opensans-bold', sans-serif;
   color: #1b263b;
   margin-bottom: 12px;
}
#contact p {
   line-height: 30px;
}

#about{
  background-color: #e0e1dd;
}
#pricing{
  background-color: #e0e1dd;
}
#contact{
  background-color: #e0e1dd;
}
#body{
  background-color: #e0e1dd;
}