*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:url('assets/bg-campus.jpg');
background-size:cover;
background-position:center;
background-attachment:fixed;
}

.overlay{
background:rgba(0,0,0,0.6);
min-height:100vh;
padding:40px;
}

.container{
max-width:1000px;
margin:auto;
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.header{
background:#0d47a1;
color:white;
text-align:center;
padding:30px;
}

.logo{
width:120px;
background:white;
padding:10px;
border-radius:50%;
margin-bottom:15px;
}

.content{
padding:30px;
}

.content h2{
margin-bottom:20px;
color:#0d47a1;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
margin-bottom:15px;
}

label{
display:block;
margin-bottom:5px;
font-weight:bold;
}

input,
select,
textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:8px;
}

button{
width:100%;
padding:15px;
background:#0d47a1;
color:white;
border:none;
border-radius:10px;
font-size:18px;
cursor:pointer;
}

button:hover{
background:#1565c0;
}

.result-box{
max-width:800px;
margin:auto;
background:white;
padding:30px;
border-radius:20px;
}

.item{
background:#f5f5f5;
padding:15px;
margin-bottom:10px;
border-left:5px solid #0d47a1;
}

@media(max-width:768px){

.grid{
grid-template-columns:1fr;
}

}
