:root {
  --primary-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
}
body {
  background: linear-gradient(
      114deg,
      rgba(255, 223, 190, 0.51) 4.46%,
      rgba(255, 222, 210, 0.51) 19.13%,
      rgba(255, 255, 255, 0) 92.19%
    ),
    linear-gradient(346deg, #d8d8d8 -1.98%, #fff 69.26%);
}
.container {
  display: grid;
  align-items: center;
  /* background: linear-gradient(
      114deg,
      rgba(255, 244, 190, 0.51) 4.46%,
      rgba(255, 247, 210, 0.51) 19.13%,
      rgba(255, 255, 255, 0) 92.19%
    ),
    linear-gradient(346deg, #ccdbff -1.98%, #fff 69.26%); */
  width: 100%;
  height: 100vh;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
}

.login-screen {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  justify-content: center;
}

.clouds img {
  position: absolute;
}

.clouds img:nth-child(1) {
  top: 2rem;
  left: 48rem;
}
.clouds img:nth-child(2) {
  top: 1rem;
  right: 5rem;
}
.clouds img:nth-child(3) {
  top: 4rem;
  right: 5rem;
}

.graphical-art .graphic-bg img {
  max-width: 830px;
  width: 100%;
}
.trainer-img img {
  margin-top: 80px;
}

.login-credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  width: 230px;
}

.login-credentials input {
  border-radius: 2rem;
  border: 1px solid #dcdcdc;
  background: #f3f3f3;
  color: #545454;
  outline: none;
  font-size: 1rem;
  width: 384px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: 1.75rem center;
  padding-left: 4rem;
}

input::placeholder {
  color: #b0acac;
}

.credentials-field {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.credentials-field .email {
  background-image: url("../img/icons/email.svg");
  margin-bottom: 1.2rem;
}
.credentials-field .password {
  background-image: url("../img/icons/password.svg");
  margin-bottom: 0.65rem;
}

.credentials-field a {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 2.8rem;
}

.login-credentials button {
  width: 384px;
  height: 64px;
  border-radius: 2rem;
  background: var(--brand-color);
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
