/* ==========================================================================
   #STYLES
   ========================================================================== */
/**
 *
 * [1]: Inheriting box sizing slightly better best-practice
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 *
 * [2]: WordPress System font-stack
 */


/* RESET
   ========================================================================== */


html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit; /* [1] */
  margin: 0;
  padding: 0;
}



/* FONTS
   ========================================================================== */

body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; /* [2] */
  background-color: #000540;
  height: 100vh;
  overflow: hidden;
}

::-webkit-input-placeholder { /* Edge */
  color: #dedede;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #dedede;
}

::placeholder {
  color: #dedede;
}

.der{
  position: absolute;
  right: 2vw;
  top: -14vw;
  height: 48vw;
  width: 12vw;
  background: url("./../images/der.svg") no-repeat 0 0 / contain;
}
.iz{
  position: absolute;
  bottom: -14vw;
  left: 2vw;
  height: 44vw;
  width: 13vw;
  background: url("./../images/iz.svg") no-repeat 0 0 / contain;
}
h3{
  margin-bottom: 10px;
}
/* Header
   ========================================================================== */

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background-color: transparent;
  color: #FFFFFF;
  margin-bottom: 50px;
  font-size: .8em;
  margin-top: 20px;
}

.header img{
  position: absolute;
  align-self: center;
  justify-self: flex-start;
  left: 2vw;
  max-width: 155px;
}

/* Homepage Container
   ========================================================================== */

.container {
  max-width: 960px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 12px 12px 18px #00000029;
  border-radius: 50px;
  margin: 0 auto;
  padding: 40px 3%;
  position: relative;
  overflow: hidden;
}

p{
  word-wrap: break-word
}

.form{
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.id_input{    
  width: 60px;
  padding: 7px;
  font-size: 15px;
  color: #000540;
  border: 1px solid #000540;
  border-radius: 7px;
  margin-right: 10px;
}
.url_input{    
  flex: 1;
  padding: 7px;
  font-size: 15px;
  color: #000540;
  border: 1px solid #000540;
  border-radius: 7px;
}

.send_buton{
  width: 90px;
  background: #00e5ba;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  margin-left: 7px;
  color: #000540;
  cursor: pointer;
}
.send_buton:hover{
  background: #000540;
  color: #fff
}



.tripleta_steps{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 25px;
  background: rgba(0,0,0,0.1);
  padding: 3%;
  border-radius: 15px;
}

.tripleta_steps .stept{
  
  max-width: 48%;
  margin-left: 5%;

}
.tripleta_steps .stept:first-child{
  max-width: 48%;
  margin-left: 0;
}
.tripleta_steps .stept:nth-child(2){
  max-width: 44%;
  margin-left: 0;
}

.tripleta_steps .stept h5{
  font-size: 16px;
  margin-bottom: 5px;
}
.tripleta_steps .stept p{
  margin-bottom: 5px;
  font-size: 15px;
}
.tripleta_steps .stept img{
  margin-bottom: 5px;
}


.center_div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5%;
  margin-top: 2%;
}
.center_div h2{ 
  margin-top: 20px;
} 

#sended{
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgb(79 106 152 / 70%);
}