@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap'); 

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

*:focus {
  outline: none;
}

body{
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	font-family: 'Open Sans', sans-serif;
}

h1,h2{
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Common CSS */
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    max-width: 420px; 
    margin: 0 auto;
}

.box{
    padding: 30px;
    display: flex;
    background: #fff;
    box-shadow: 0 8.9098px 36.6557px rgb(67 67 67 / 6%);
    border-radius: 10.9822px;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.btn {
    background: linear-gradient(to right, #EA0909, #bd1e26);
    background-color: #bd1e26;
    border:none;
    color: #ffffff;
    padding: 6px 21px;
    display: inline-block;
    border-radius: 4px;
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 8px;
    letter-spacing: 0.04px;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 40px;
}
.btn:hover{
    background-color: #bd1e26;
    background: linear-gradient(to right, #bd1e26, #EA0909);
    color: #ffffff;
}

/* App CSS */
.input-group {
  display: block;
  width: 441px;
  max-width: 100%;
  height: 100px;
  border: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 17px 40px 0 rgba(75, 128, 182, 0.07);
  margin-bottom: 22px;
  position: relative;
  font-size: 17px;
  color: #a7b4c1;
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out,
    box-shadow 0.1s ease-in-out;
  border: 1px solid #eee;
}
.input-group:hover {
  box-shadow: 0 14px 44px 0 rgba(0, 0, 0, 0.077);
}

.input-group input {
  position: absolute;
  border: 0;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  height: 85px;
  width: 100%;
  padding: 0 53px;
  box-sizing: border-box;
  z-index: 3;
  display: block;
  color: #222222;
  font-size: 38px;
  transition: top 0.1s ease-in-out;
  text-align: center;
}

.input-group input::placeholder {
  color: rgba(0, 0, 0, 0);
  text-align: center;
}

.input-group input:focus,
.input-group input:not(:placeholder-shown) {
  top: 0px;
}

.input-group label {
  position: absolute;
  border: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 53px;
  box-sizing: border-box;
  transition: all 0.1s ease-in-out;
  cursor: text;
  justify-content: center;
}
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: 40px;
  font-size: 13px;
  opacity: 0.7;
}


#modal{
    display: none;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    padding: 40px;
    font-size: 14px;
    line-height: 20px;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
#output{
    border:1px solid #eee;
    padding: 10px;
    margin-bottom: 20px;
    color: #B2B2B2;
    text-align: center;
}
#output b{
    display: block;
    font-size: 42px;
    line-height: 46px;
    text-align: center;
    color: #222;
    border-bottom: 1px dotted #eee;
    padding-bottom: 6px;
}
#output span{
    color: #222;
    font-weight: 600;
}
#close {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    border: 1px solid #b2b2b2;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}


@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}


/* Responsive CSS, If required */
@media only screen and (max-width: 600px) {

}