*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{

background:url("campus.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:100vh;

display:flex;
flex-direction:column;
}

header{

height:80px;
background:#85002d;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 30px;
}

.logo img{

height:55px;

}

.top-links a{

color:white;
text-decoration:none;
font-size:15px;

}

.container{

flex:1;

padding:60px;

}

.login-box{

width:580px;

background:rgba(255,255,255,.65);

padding:25px;

border-radius:15px;

box-shadow:0 0 10px rgba(0,0,0,.3);

backdrop-filter:blur(4px);

}

.login-box h2{

text-align:center;

margin-bottom:20px;

font-weight:400;

}

.login-box h2 i{

color:#85002d;

margin-right:10px;

}

label{

display:block;

text-align:center;

font-size:18px;

margin-top:15px;

margin-bottom:8px;

}

input{

width:100%;

padding:12px;

border:none;

border-radius:4px;

margin-bottom:10px;

}

button{

width:100%;

padding:12px;

background:#990033;

border:none;

color:white;

font-size:18px;

cursor:pointer;

border-radius:4px;

margin-top:10px;

}

button:hover{

background:#7d0028;

}

.links{

text-align:center;

margin-top:20px;

}

.links a{

text-decoration:none;

color:#85002d;

font-weight:bold;

margin:10px;

display:inline-block;

}

.links p{

margin:12px;

}

.mfa{

margin-top:25px;

}

.mfa img{

width:100%;

border:2px solid #85002d;

}

footer{

background:#85002d;

color:white;

display:flex;

justify-content:space-between;

padding:40px;

flex-wrap:wrap;

}

.footer-left{

width:45%;

}

.footer-left img{

width:280px;

margin-bottom:20px;

}

.social{

font-size:30px;

margin-bottom:20px;

}

.social i{

margin-right:20px;

cursor:pointer;

}

.footer-right{

display:flex;

gap:80px;

}

.footer-right h4{

margin-bottom:15px;

}

.footer-right ul{

list-style:disc;

}

.footer-right li{

margin-bottom:10px;

}