body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


@font-face {
  font-family: 'OpenSans';
  font-weight: 400;
  src: local('OpenSans'), url(fonts/OpenSans-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'OpenSans';
  font-weight: 500;
  src: local('OpenSans'), url(fonts/OpenSans-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'OpenSans';
  font-weight: 600;
  src: local('OpenSans'), url(fonts/OpenSans-SemiBold.ttf) format('truetype');
}


body {
  margin: 0;
  font-family: OpenSans, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'OpenSans';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.mainContainer{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

.leftSide{ 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}


.leftSideParag{
  text-align: center;
  font-size: 18px;
  color: #424242;
}

.mainBtn{
  background-color: #623D91;
  color: white;
  text-decoration: none;
  width: 100%;
  text-align: center;
  display: inline-block;
  border-radius: 20px;
  padding: 8px;
  font-size: 600;
  margin-top: 20px;
  width: 400px;
}

.rightSide{
    background-color: #623D91;
    background-image: url(/Images/Vizibit-background.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: top 80px right -60px;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.rightSideImg{
    width: 180px;
}

.rightSideTitle{
  font-size: 52px;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.1);
	margin-top: 24px;
	margin-left: 14px;
}
