.agc-wrap{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.agc-left{
width:350px;
}

.agc-right{
flex:1;
}

.agc-left input[type="file"]{
width:100%;
padding:20px;
background:#eee;
margin-bottom:20px;
}

.agc-left label{
display:block;
margin-top:15px;
font-weight:bold;
}

.agc-left input[type="range"]{
width:100%;
}

#agc-name{
width:100%;
padding:15px;
margin-top:20px;
font-size:18px;
}

#agc-download{
width:100%;
padding:15px;
background:red;
color:#fff;
border:none;
margin-top:20px;
font-size:18px;
cursor:pointer;
}

#agc-card{
position:relative;
width:350px;
height:500px;
overflow:hidden;
}

.agc-frame{
width:100%;
position:absolute;
left:0;
top:0;
z-index:5;
}

#agc-user-image{
position:absolute;
width:180px;
height:220px;
left:85px;
top:100px;
object-fit:cover;
z-index:1;
}

#agc-user-name{
position:absolute;
bottom:120px;
width:100%;
text-align:center;
font-size:24px;
font-weight:bold;
color:#FF0505;
z-index:10;
}

#agc-modal{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.8);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.agc-modal-box{
background:#fff;
padding:20px;
width:500px;
max-width:95%;
}

#agc-crop-image{
max-width:100%;
}

#agc-crop-btn{
width:100%;
padding:15px;
background:red;
color:#fff;
border:none;
margin-top:15px;
font-size:18px;
cursor:pointer;
}

@media(max-width:768px){

.agc-wrap{
flex-direction:column;
}

#agc-card{
margin:auto;
}

}