* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Work Sans';
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

.text-center{
  text-align: center;
}

.color-orange {
  color: #FF6C06;
}

.color-dark-blue {
  color: #3D4C65;
}

.color-grey {
  color: #8A9099;
}

.fontsize-14 {
  font-size: 14px;
}

.font-heading{
  font-size: 42px;
  font-weight: 800;
}

.font-bottom{
  margin-top: 50px;
  font-size: 10px;
}

.fontsize-42 {
  font-size: 42px;
}

.fontweight-600 {
  font-weight: 600;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.space-between {
  display: inherit;
  justify-content: space-between;
}

.container {
  display: flex;
}

.hidden-component {
  display: none;
}

.side-one {
  flex: 1;
  display: flex;
}

.side-two {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  background-image: url(../images/login/login.png);
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-image {
  display: flex;
  background-image: url(../images/login/vector-image.jpg);
  width:"100%";
  height:calc(100vh - 2px);
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
}

.image-small {
  display: none;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.form-container {
  /* border: 1px solid black; */
}

.login-logo {
  width: 430px;
  display: block;
}

.input-container {
  display: flex;
  flex-direction: column;
}

.input-label {
  color: #8A9099;
  margin-bottom: 5px;
}

.input-form {
  height: 35px;
  border-radius: 10px;
  border: 1px solid #8A9099;
  margin-bottom: 25px;
  padding: 18px;
}

.button {
  background-color: #F95E2F;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.responsive {
  width: 100%;
  height: auto;
}

.center-element {
  position: relative;
  top: 37.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1440px) {
  .side-two {
    flex: 1;
  }
}

@media screen and (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .hidden-component {
    display: block;
  }

  .bg-image {
    background-image: none;
  }

  .image-small {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-small img {
    width: 100vw;
    object-fit: cover;
  }

  .login-logo {
    display: none;
  }

  .form-container {
    width: 100vw;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .font-heading{
    font-size: 27px;
    font-weight: 600;
  }

  .responsive {
    display: none;
  }

  .center-element {
    top: 50%;
  }

  .image-container {
    background-image: url(../images/login/login-mobile.png);
    background-size: contain;
    height: 84vw;
  }
}


