@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --Red: hsl(0, 100%, 74%);
  --Green: hsl(154, 59%, 51%);
  --Blue: hsl(248, 32%, 49%);
  --Dark-Blue: hsl(249, 10%, 26%);
  --Grayish-Blue: hsl(246, 25%, 77%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: url(images/bg-intro-desktop.png);
  background-color: var(--Red);
  min-height: 100vh;
}
.containre {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}
.containre .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 3rem;
  min-height: 100vh;
}
.containre .row .text-section {
  color: white;
  align-items: center;
}
.containre .row .text-section h1 {
  font-size: 50px;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.containre .row .form-section .btn-pragraph {
  background-color: var(--Blue);
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 30px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 4px rgb(0, 0, 0, 0.3);
}
.containre .row .form-section form {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 4px rgb(0, 0, 0, 0.2);
}
.containre .row .form-section form input {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid var(--Dark-Blue);
  border-radius: 5px;
  font-weight: 600;
}
.containre .row .form-section form input:focus {
  outline: 1px solid var(--Grayish-Blue);
}
.containre .row .form-section button {
  color: white;
  background-color: var(--Green);
  text-align: center;
  padding: 15px 0;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 8px 4px rgb(0, 0, 0, 0.3);
  border: none;
  font-weight: 600;
}
.containre .row .form-section p {
  font-size: 12px;
  color: var(--Grayish-Blue);
}
.containre .row .form-section p a {
  text-decoration: none;
  color: var(--Red);
  font-weight: 600;
}
@media (max-width: 900px) {
  .containre .row {
    column-gap: 1rem;
  }
}
@media (max-width: 700px) {
  .containre .row {
    grid-template-columns: 1fr;
  }
  .containre .row .text-section {
    text-align: center;
  }
  .containre .row .text-section h1 {
    font-size: 30px;
  }
  .containre {
    padding: 2rem;
  }
}
