*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#141e30,#243b55);

padding:20px;

color:white;

}

.container{

width:100%;

max-width:700px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(10px);

border-radius:15px;

padding:30px;

box-shadow:0 0 30px rgba(0,0,0,0.4);

}

h1{

text-align:center;

margin-bottom:20px;

}

h1 span{

color:#ff4d6d;

}

textarea{

width:100%;

height:180px;

border:none;

outline:none;

border-radius:10px;

padding:15px;

font-size:16px;

resize:none;

background:rgba(255,255,255,0.15);

color:white;

}

.counter{

margin-top:5px;

font-size:14px;

color:#ccc;

}

select{

width:100%;

margin-top:15px;

height:45px;

border:none;

border-radius:25px;

padding:0 10px;

background:rgba(255,255,255,0.2);

color:white;

}

.buttons{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:10px;

margin-top:15px;

}

button{

padding:10px;

border:none;

border-radius:25px;

cursor:pointer;

font-size:15px;

background:#ff4d6d;

color:white;

transition:0.3s;

}

button:hover{

background:#ff2e55;

transform:scale(1.05);

}

.sliders{

margin-top:15px;

}

.slider{

margin-top:10px;

}

.slider input{

width:100%;

}

/* Responsive */

@media(max-width:500px){

h1{

font-size:24px;

}

textarea{

height:150px;

}

}
