@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --primary-color: #fff;
  --secondary-color: #00fe87;
  --updaged-secondary-color: #005a30;
  --general-font-color: #313647;
  --linear-color-one: #2f2e41;
  --linear-color-two: #404556;
  --secondary-background: #e5ebfe;
  --border-color: #ffffff5c;
  --line-height: 1.5;
  --font-family: "Sen", sans-serif;
}

main {
  margin-left: 410px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

@media (max-width: 1439px) {
  main {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 1199px) {
  main {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

body {
  font-family: var(--font-family) !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
}

.underline {
  text-decoration: underline;
}

.general__font__color {
  color: var(--general-font-color);
}

.login__container {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.left__side {
  position: absolute;
  left: 0;
  width: 48%;
  height: 100%;
  border-radius: 17px 50px 50px 17px;
  background: linear-gradient(117.45deg, #e0e7ff 17.61%, #e0e7ff 55.43%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

.left__side::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 102%;
  padding-left: 1rem;
  border: 2px dashed #e0e7ff;
  border-radius: 0 50px;
  opacity: 0.5;
  z-index: -1;
}

.logo__container {
  background: rgb(47, 46, 65);
  width: 282px;
  height: 83px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.union__cross {
  position: absolute;
  top: 40px;
  left: 530px;
}

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

.sign__in__info p {
  width: 70%;
  text-align: center;
}

.equipment {
  position: absolute;
  height: 70%;
  width: 100%;
  bottom: 10px;
  z-index: -1;
}

.left__side form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.left__side form input {
  width: 150%;
  height: 3.5rem;
  border: none;
  outline: none;
  border-radius: 15px;
  padding: 0 1rem;
  font-size: 1.2rem;
  background-color: #fcfffe;
  position: relative;
  box-shadow: -5px 0 0 #02b55c;
}

.input {
  position: relative;
  left: -33px;
}

.fa-solid {
  position: absolute;
  right: -5rem;
  top: 56%;
  transform: translate(-10%, -70%);
  cursor: pointer;
}

.left__side form input[type="submit"] {
  width: 150%;
  height: 3.5rem;
  border: none;
  border-radius: 15px;
  padding: 0 1rem;
  font-size: 1.2rem;
  background-color: #02b55c;
}

.terms__conditions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 2.5rem 0;
  padding: 0 0.5rem;
  gap: 2rem;
}

.terms__conditions a {
  color: #02b55c;
}

.allright_reverse {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  color: var(--linear-color-two);
}

.allright_reverse p span {
  color: #02b55c;
}

.right__side {
  position: absolute;
  right: 0;
}

.right__side__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right__side__content img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.right__side__content img {
  background-color: black;
}

@media (min-width: 1440px) {
  .fa-solid {
    right: -5rem;
    top: 56%;
  }
}

@media screen and (max-width: 1200px) {
  .union__cross {
    display: none;
  }
}

@media only screen and (min-width: 820px) and (max-width: 820px) {
  .right__side {
    display: none;
  }

  .sign__in__info p {
    width: 70%;
    text-align: center;
  }

  .left__side {
    width: 100%;
    border-radius: 0;
  }

  .input {
    position: relative;
    left: -38px;
  }

  .left__side form input {
    width: 150%;
    padding: 0 1.5rem;
    font-size: 1.3rem;
  }

  .left__side form input[type="submit"] {
    width: 150%;
    padding: 0 1.5rem;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .union__cross {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .left__side {
    width: 100%;
    border-radius: 0;
  }

  .right__side {
    display: none;
  }
}
