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

body{
background:
linear-gradient(180deg,#03103a,#04184c);
color:#fff;
min-height:100vh;
}

.header{
max-width:1200px;
margin:auto;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.title{
font-size:28px;
font-weight:700;
}

.nav{
display:flex;
gap:12px;
}

.nav button,
.nav a{
background:#13295f;
color:white;
border:none;
padding:12px 18px;
border-radius:16px;
text-decoration:none;
cursor:pointer;
}

.searchWrap{
max-width:1200px;
margin:auto;
padding:0 20px 24px;
position:relative;
}

#q{
width:100%;
height:64px;
background:#13295f;
border:none;
border-radius:22px;
padding:0 90px 0 24px;
color:white;
font-size:18px;
outline:none;
}

.plus{
position:absolute;
right:34px;
top:6px;
width:52px;
height:52px;
border-radius:50%;
background:#4d74ff;
border:none;
color:white;
font-size:24px;
}

#grid{
max-width:1200px;
margin:auto;
padding:20px;
}

.group{
background:#0d2056;
border-radius:28px;
margin-bottom:22px;
overflow:hidden;
}

.borrower{
padding:22px;
font-size:20px;
font-weight:700;
background:#203a79;
}

.section{
padding:20px 22px 8px;
opacity:.7;
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
}

.row{
display:flex;
justify-content:space-between;
padding:20px 22px;
border-top:1px solid rgba(255,255,255,.08);
}

.act{
display:flex;
gap:10px;
}

.act a{
background:#4d74ff;
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
text-decoration:none;
color:white;
}

.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.55);
justify-content:center;
align-items:center;
z-index:999;
}

.modal.show{
display:flex;
}

.modalBox{
width:min(450px,92vw);
background:#081b48;
padding:24px;
border-radius:22px;
display:flex;
flex-direction:column;
gap:14px;
}

.modalBox input,
.modalBox select{
height:50px;
border:none;
border-radius:12px;
padding:10px;
}

.modalActions{
display:flex;
gap:10px;
}

.modalActions button{
flex:1;
height:48px;
border:none;
border-radius:12px;
}

@media(max-width:768px){

.header{
flex-direction:column;
gap:16px;
}

.nav{
width:100%;
justify-content:center;
}

#q{
height:56px;
}

.plus{
top:2px;
}

.row{
flex-direction:column;
gap:16px;
}

.act{
justify-content:flex-end;
}

}

