*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Metropolis",sans-serif;
}
::selection {
    background: #cea68b; /* WebKit/Blink Browsers */
    color: black
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #03080a;
    padding-top: 10%;
    
}
.container{
    height: 72%;
    width: 60%;
    /* padding: 20px; */
   /* background-color:rgba(27, 27, 27, 0.3); */
    /*border-radius: 45px;*/
    position: absolute;
    opacity: 0.9;
    /*transition: all .2s linear;*/
   /* border-bottom: 5px solid rgb(27, 27, 27);*/
    
}
/*.container:hover {
    transition: all  linear .2s;
    box-shadow: rgba(27, 27, 27, 0.6) 0px 1px 4px, rgb(27, 27, 27, 0.6) 0px 0px 0px 3px;
}*/
.container h2{
    width: 100%;
    color: #fff; /*Renk Kısmı #2 */
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.container .row100{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}
.container .row100 .col{
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin: 30px 0 10px;
    transition: 0.5s;
    
}
.container .row100 .inputBox{
    position: relative;
    width: 100%;
    height: 40px;
    color: #fff; /* Renk Kısmı #2 */ 
}
.container .row100 .inputBox input,
.container .row100 .inputBox.textarea textarea{
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 18px;
    z-index: 1;
    color: #000;/*Renk #3*/
}
.container .row100 .inputBox .text{
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
}
.container .row100 .inputBox input:focus + .text,
.container .row100 .inputBox input:valid + .text{
    top: -35px;
    left: -10px;
}
.container .row100 .inputBox .line{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #F5AE8A; /*Renk #4*/
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
}
.container .row100 .inputBox input:focus ~ .line, .container .row100 .inputBox input:valid ~ .line{
    height: 100%;
}
.container .row100 .inputBox.textarea{
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;
}
.container .row100 .inputBox.textarea textarea{
    height: 100%;
    resize: none;
}
.container .row100 .inputBox textarea:focus + .text, .container .row100 .inputBox textarea:valid + .text{
    top: -35px;
    left: -10px;
}
.container .row100 .inputBox textarea:focus ~ .line, .container .row100 .inputBox textarea:valid ~ .line{
    height: 100%;
}
input[type="button"]{
    border: none;
    padding: 7px 35px;
    cursor: pointer;
    outline: none;
    background: none;
    font-size:22px;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    align-items: center;
}
.container a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: sans-serif;
    box-sizing: border-box;
    background: linear-gradient(90deg, #03a9f4, #f441a4, #ffeb3b, #03a9f4);
    background-size: 400%;
    border-radius: 30px;
    z-index: 1; 
    margin-top: 20px;
}
   .container a:hover {
    animation: animate 8s linear infinite;
   }
   @keyframes animate {
    0% {
     background-position: 0%;
    }
    100% {
     background-position: 400%;
    }
   }
   .container a:before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #03a9f4, #f441a4, #ffeb3b, #03a9f4);
    background-size: 400%;
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0;
    transition: 0.5s;
   }
   .container a:hover:before {
    filter: blur(20px);
    opacity: 1;
    animation: animate 8s linear infinite;
   }
.hero-img-obj {
    filter: brightness(50%) blur(6px);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
