

/* Banner */

.section-banner{
text-align:center;
padding:30px 10px;
background:#fff;
}



/* LOGIN CARD */

.login-container{
width:100%;
max-width:420px;
margin:40px auto;
background:#fff;
padding:35px 30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.login-container h2{
color:#ff691b;
margin-bottom:5px;
}

.login-container p{
font-size:14px;
color:#777;
margin-bottom:25px;
}

/* INPUT */

.input-group{
margin-bottom:18px;
text-align:left;
}

.input-group label{
font-size:13px;
font-weight:600;
margin-bottom:5px;
display:block;
color: black;
}

.input-group input{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:5px;
font-size:14px;
}

/* OPTIONS */

.options{
display:flex;
justify-content:space-between;
font-size:13px;
margin-bottom:20px;
}

.options a{
text-decoration:none;
color:#ff691b;
}

/* BUTTON */

.login-btn{
width:100%;
background:#ff691b;
color:#fff;
border:none;
padding:11px;
border-radius:5px;
font-size:15px;
font-weight:600;
cursor:pointer;
}

.login-btn:hover{
background:#e65c10;
}

/* REGISTER */

.register{
margin-top:18px;
font-size:13px;
}

.register a{
color:#ff691b;
text-decoration:none;
font-weight:600;
}

/* MOBILE */

@media(max-width:500px){

.section-banner h2{
font-size:24px;
}

.login-container{

padding:30px 20px;
}

}


.login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #ff691b;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.logo-circle {
  display: inline-flex;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff691b;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 105, 27, 0.5);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-subtitle {
  font-weight: 700;
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-bottom: 25px;
}