<style>
div.bigImageContainer {
    width: 50%;
    background-image: url('https://passport-media.s3-us-west-1.amazonaws.com/Morgan+Stanley/msLogin.jpg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
	box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1);
    margin-left: 10px;
}

div.signContainer {
    width: 90vw;
    height: 90%;
    margin: 60px auto;
}

.rw_content {
    background: var(--main-background);
}


div.formContainer {
    box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
	width: 50%;
}

.link-container-button.left {
    display: none;
}

div.link-container-button {
    width: 100%;
}
</style>




<script>
let rediUrl = ""
if(window.location.href.toLowerCase().includes("os_destination")){
		rediUrl = window.location.href.split("os_destination=")[1]
	} else {
    rediUrl = "/display/MS/Home"
	}

// Endpoint checks if authenticated user is part of smith group otherwise add and send email
jQuery.ajax({
  url: "/rest/scriptrunner/latest/custom/smithAutoMemberShip",
  headers: {
    'X-Atlassian-Token' : 'nocheck',
    'Content-type' : 'application/json'
  },
  type: "POST",
  dataType: 'text',
  data: JSON.stringify({
    "email": AJS.params.remoteUser,
  }),
  success: function(text){
    //console.log("Response: "+ text)
	window.location.replace(rediUrl)
  },
  error: function(err){
    //alert(err)
	window.location.replace("https://passport.theonevalley.com/");
  }
});


</script>







.



<style>

div#custom-footer {
    display: none;
}
.main-container {
    min-height: calc(100vh - 50px);
    background-repeat: no-repeat;
    background-size: cover;
}

div#toggle {
    display: none;
}
</style>