:root {
--white: #ffffff;
}

html, body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}

body {
background: url('../login_bg2.jpg') no-repeat center center fixed;
background-size: cover;
font-family: 'Segoe UI', sans-serif;
}

.overlay {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.42);
z-index: 0;
}

.page-wrapper {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
z-index: 1;
}

.login-box {
max-width: 400px;
background: rgba(0, 0, 0, 0.48);
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
color: white;
width: 90%;
}

.login-box h4 {
margin-bottom: 20px;
color: #A51C30;
font-weight: bold;
}

.form-control {
background: rgba(255, 255, 255, 0.1);
color: white;
border: none;
}

.form-control::placeholder {
color: #ccc;
}

.btn-login {
background: #A51C30;
border: none;
color: white;
font-weight: bold;
}

.btn-login:hover {
background: #7f1623;
}

.extra-links {
margin-top: 15px;
}

.extra-links a {
color: #A51C30;
text-decoration: none;
}

.extra-links a:hover {
text-decoration: underline;
}


.input-group-text {
background: rgba(255, 255, 255, 0.1);
border: none;
color: #A51C30;
}

.logo {
height: 80px;
width: auto;
object-fit: contain;
}

footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: var(--white);
background-color: rgba(0,0,0,0.5);
}