* { box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap');


body {
  font-family: 'Rubik', sans-serif;
}
.width-13{
    width:100px;
}
.dropzone {
        width: 100% !important;
    margin: 6px 0 6px !important;
    min-height: 83px !important;
    padding: 11% 10px !important;
    background: #fff;
    border: 2px dashed #989292;
}

.container-fluid {
  display: flex;
  height: 100vh;
  padding:0px !important;
}

.left {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  animation-name: left;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1s;
}

.right {
  flex: 1;
  background-color: black;
  transition: 1s;
  background-image: url('/img/background/Avurudu_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



.header > h2 {
  margin: 0;
  color: #4f46a5;
}

.header > h4 {
  margin-top: 10px;
  font-weight: normal;
  font-size: 15px;
  color: rgba(0,0,0,1);
}

.form {
  max-width: 80%;
  display: flex;
  flex-direction: column;
}

.form > p {
  text-align: right;
}

.form > p > a {
  color: #000;
  font-size: 14px;
}
.deskt-girl{
    position: absolute;
    right: 45px;
    bottom: 0;
    width: 17%;
}
.deskt-logo{
    position: absolute;
    left: 45px;
    bottom: 0;
    width: 30%;
}
.se-ar{
    position: relative;
    height: 100vh;
}
@media only screen and (max-width: 480px){
    body{
        background-image: url('/img/background/Avurudu_bgMob.jpg');
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
    }
    .deskt-logo, .deskt-girl{
        display:none !important;
    }
  .mobile-girl{
        display: block !important;
    position: absolute;
    right: 0;
    width: 57%;
    border: 0;
    bottom: 0;
  }  
    
}

.form-field {
  height: 46px;
  padding: 0 16px;
  border: 2px solid #989292;
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  outline: 0;
  transition: .2s;
  margin-top: 20px;
}

.form-field:focus {
  border-color: #0f7ef1;
}

.form > button {
  padding: 12px 10px;
  border: 0;
  background: linear-gradient(to right, #067a37 0%,#5af19a 100%);
  border-radius: 3px;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'Rubik', sans-serif;
}

.animation {
  animation-name: move;
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-delay: 2s;
}

.a1 {
  animation-delay: 2s;
}

.a2 {
  animation-delay: 2.1s;
}

.a3 {
  animation-delay: 2.2s;
}

.a4 {
  animation-delay: 2.3s;
}

.a5 {
  animation-delay: 2.4s;
}

.a6 {
  animation-delay: 2.5s;
}
.a7 {
  animation-delay: 2.6s;
}

.a8 {
  animation-delay: 3s;
}
.a9 {
  animation-delay: 3s;
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 440px;
  }
}