@import url("https://fonts.googleapis.com/css?family=Rubik:700&display=swap");
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
html{
  width: 100vw;
}
body {
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  flex-direction: column;
  font-family: sans-serif;
  color: #212529;
  background: url(https://css.zohostatic.in/iam/M_4496170/v2/components/images/bg.svg) transparent;
}
h1{
  display: flex;
    font-size: 3.8rem;
    flex-direction: row;
    align-items: flex-end;
}
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: inherit;
  margin: 7rem;
}
button.btn {
  font-weight: 600;
  width: 14rem;
  height: 4.5rem;
  background: #d7e3ed;
  border: 2px solid #0f3a5dcc;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #bbd1e3;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #0f3a5dcc, 0 0.625em 0 0 #0f3a5d1c;  
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.btn:hover {
  background: #c1d0dd;
  transform: translate(0, 0.25em);
}
button.btn:hover::before {
  box-shadow: 0 0 0 2px #0f3a5dd9, 0 0.5em 0 0 #c1d0dd;
  transform: translate3d(0, 0.5em, -1em);
}
button.btn:active {
  background: #85a3be;
  transform: translate(0em, 0.75em);
}
button.btn:active::before {
  box-shadow: 0 0 0 2px #0f3a5dcc, 0 0.625em 0 0 #0f3a5d3d;  
  transform: translate3d(0, 0, -1em);
}
@media only screen and (max-width: 800px) {
  
}