*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}


body{

background:#f4f7ef;

}


/* MAIN */

.creator-page{

min-height:100vh;

padding:40px 20px;

display:flex;

flex-direction:column;

align-items:center;

background:

linear-gradient(
rgba(240,246,232,0.8),
rgba(255,255,255,0.9)
),

url("background.jpg");

background-size:cover;

background-position:center;

}



/* LOGIN CARD */

.login-card{

width:100%;

max-width:520px;

background:white;

padding:40px 35px;

border-radius:28px;

box-shadow:

0 20px 50px rgba(0,0,0,0.12);

text-align:center;

}



/* LOGO */

.logo{

width:120px;

margin-bottom:20px;

}



/* BADGE */

.badge{

display:inline-block;

background:#eef7e9;

color:#267238;

padding:10px 18px;

border-radius:30px;

font-size:14px;

margin-bottom:20px;

}



/* TITLE */

h1{

font-family:Georgia,serif;

font-size:48px;

color:#164d29;

margin-bottom:15px;

}



.subtitle{

color:#777;

font-size:17px;

line-height:1.6;

margin-bottom:30px;

}



/* INPUT */

.input-box{

display:flex;

align-items:center;

gap:12px;

border:1px solid #ddd;

border-radius:16px;

padding:15px 18px;

margin-bottom:18px;

background:#fff;

}



.input-box span{

font-size:22px;

}



.input-box input{

border:none;

outline:none;

width:100%;

font-size:16px;

}



/* OPTIONS */

.options{

display:flex;

justify-content:space-between;

align-items:center;

font-size:14px;

margin:15px 0 25px;

color:#555;

}



.options a{

color:#267238;

text-decoration:underline;

}



/* BUTTON */

button{

width:100%;

padding:17px;

border:none;

border-radius:14px;

background:#207636;

color:white;

font-size:18px;

cursor:pointer;

transition:.3s;

}



button:hover{

background:#155624;

}



/* APPLY */

.apply{

margin-top:30px;

font-size:16px;

color:#555;

}



.apply a{

color:#207636;

font-weight:bold;

text-decoration:none;

}



/* FEATURES */


.features{

width:100%;

max-width:800px;

display:flex;

gap:20px;

margin-top:35px;

justify-content:center;

}



.features div{

background:white;

padding:20px;

border-radius:20px;

text-align:center;

flex:1;

box-shadow:0 10px 25px rgba(0,0,0,.08);

color:#267238;

}



.features b{

display:block;

margin:10px 0;

color:#222;

}



.features span{

font-size:13px;

color:#777;

}



/* MOBILE */


@media(max-width:600px){


.creator-page{

padding:25px 15px;

}



.login-card{

padding:30px 20px;

}



h1{

font-size:38px;

}



.features{

flex-direction:column;

}



}