@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Vazirmatn;
}

body{
background:#1A0A31;
color:white;
}

/* صفحات */
.page{
display:none;
min-height:100vh;
}

.page.active{
display:block;
}

/* لاگین */
.centerBox{
max-width:350px;
margin:120px auto;
text-align:center;
}

.logo{
font-size:50px;
color:#8B5CF6;
margin-bottom:10px;
}

.sub{
color:#C9C4D8;
margin-bottom:20px;
}

input{
width:100%;
padding:12px;
margin:8px 0;
border:none;
border-radius:10px;
background:#2D1856;
color:white;
outline:none;
}

button{
width:100%;
padding:12px;
margin-top:10px;
border:none;
border-radius:10px;
background:#8B5CF6;
color:white;
font-weight:bold;
cursor:pointer;
}

/* هوم */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#241243;
}

.logoSmall{
font-weight:bold;
color:#8B5CF6;
}

.postBox{
padding:15px;
}

textarea{
width:100%;
height:100px;
padding:10px;
border:none;
border-radius:10px;
background:#2D1856;
color:white;
resize:none;
}

#feed{
padding:10px;
}

.post{
background:#241243;
padding:15px;
margin-top:10px;
border-radius:12px;
}
