.LoginBody {
  background: linear-gradient(0.1turn, #0038a8, #081f45, #b30838 ); 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
  width: 100vw; 
}

.svg-container {
  position: fixed;
  bottom: -290px;
  right: -190px;
  width: 801px;
  height: 791px;
  background-image: url('/Content/images/aderant-a-logo-inverted-rgb.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.07;
}
  
body { padding: 0; }

.loginWrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.welcomeBox {
  color: #fff; 
  display: flex; 
  flex-direction: column; 
  gap: 20px;
  max-width: 535px;
}

.welcomeTitle {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: Arial;
  line-height: 3rem;
}

.welcomeContent {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7rem;
  max-width: 90%;
}

.signInBox {
  background: #fff;
  border-radius: 20px;
  border-top: 5px solid #B30838;
  padding: 30px;
  max-width: 500px;
  min-width: clamp(300px, 30vw, 400px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: left;
  height: fit-content;
}

.signInHeader {
  font-size: 36px;
  font-weight: 500;
  font-family: sans-serif;
}

.signInMessage {
  font-size: 16px;
}

.signInButton {
  color: #fff;
  background: #B30838;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  border: none;
  border-radius: 50px;
  align-items: center;
  font-size: 1rem;
  height: 38px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);

  text-decoration: none;
}
.btn-primary:focus,
.btn-primary:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .loginWrapper {
    flex-direction: column;
  }

  .welcomeBox {
    align-items: center;
  }

  .welcomeTitle {
    display: none;
  }

  .welcomeContent {
    display: none;
  }
}