.rep-container{
max-width:900px;
margin:60px auto;
padding:40px;
background:#fff;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.rep-title{
font-size:28px;
margin-bottom:25px;
}

.rep-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.rep-field{
display:flex;
flex-direction:column;
}

.rep-field label{
margin-bottom:6px;
font-weight:500;
}

.rep-field input,
.rep-field textarea,
.rep-field select{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

.rep-button{
margin-top:20px;
background:#1e73be;
color:#fff;
padding:14px 30px;
border:none;
border-radius:6px;
cursor:pointer;
}

.rep-property-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.rep-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.rep-card img{
width:100%;
height:220px;
object-fit:cover;
}

.rep-card-body{
padding:20px;
}

.rep-card-title{
font-size:18px;
font-weight:600;
}

.rep-card-price{
color:#1e73be;
margin:10px 0;
}