*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Poppins,sans-serif;

}

body{

background:#F5F7FB;

}

.container{

max-width:600px;

margin:40px auto;

padding:20px;

}

.card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.badge{

display:inline-block;

background:#6C4CF5;

color:#fff;

padding:8px 16px;

border-radius:999px;

font-size:13px;

font-weight:600;

margin-bottom:20px;

}

h1{

font-size:28px;

margin-bottom:12px;

}

.subtitle{

margin-bottom:30px;

color:#666;

line-height:1.7;

}

.form-group{

margin-bottom:22px;

}

label{

display:block;

margin-bottom:8px;

font-weight:600;

}

input,
textarea{

width:100%;

padding:14px;

border-radius:12px;

border:1px solid #DDD;

font-size:15px;

}

textarea{

resize:vertical;

}

.btn{

width:100%;

padding:16px;

background:#6C4CF5;

color:#fff;

border:none;

border-radius:12px;

font-size:16px;

font-weight:600;

cursor:pointer;

}

.btn:hover{

opacity:.9;

}

.btn:disabled{

opacity:.6;

cursor:not-allowed;

}