/* Top navigation */
/* Top navigation */
/* Top navigation */
.login-top-nav{
	height:50px;
	width:100%;
	background: #ffffff; /* white background */
	box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle modern shadow */
	color:black;
}

/* Bottom footer */
.login-bottom-nav{
	height:50px;
	width:100%;
	background: #1A3A6D; /* navy blue */
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #ffffff;
	padding-top: 12px;
	text-align: center;
	font-weight: 500;
}

.login-top-text {
    font-size: 18px;      /* adjust size */
    font-weight: 600;     /* semi-bold */
    line-height: 50px;    /* vertically center in the nav */
    text-align: center;
    display: block;
}


/* Login card wrapper with gradient */
.login-wrapper{
	margin: auto;
	margin-top:40px;
	width: 97%;
	min-height:320px;
	background: linear-gradient(135deg, #4FC3F7, #00ACC1); /* soft blue-teal gradient */
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* slightly stronger shadow */
	transition: all 0.3s ease;
}

/* Optional hover effect */
.login-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}


/* Logo wrapper */
.logo-wrapper{
	margin-top: 10px;
	text-align: center;
}

.logo-wrapper img {
	border-radius: 50%;
	border: 2px solid #fff;
	background: #fff;
	padding: 5px;
	width: 120px;
}

/* Input container */
.login-wrapper .login-input{
	margin-top:20px;
	text-align:center;
}

/* Input fields */
.login-wrapper .login-input input{
	width:90%;
	height:50px;
	margin-bottom:20px;
	background:#ffffff;
	border-radius: 12px;
	border: 1px solid #ccc;
	padding-left: 15px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.login-wrapper .login-input input:focus{
	border-color: #8E7BFF; /* purple focus glow */
	box-shadow: 0 0 10px rgba(142, 123, 255, 0.5);
	outline: none;
}

/* Error messages */
.login-err-msg{
	text-align:center;
	color: #ff4d4d; /* bright red for errors */
	font-size: 14px;
}

/* Login button */
.login-button{
	width:90%;
	height:50px;
	background: linear-gradient(135deg, #8E7BFF, #6C5FC7); /* purple gradient */
	color: #fff; 
	border: 1px solid #6C5FC7;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.login-button:hover{
	background: linear-gradient(135deg, #A28BFF, #7D6BFF); /* lighter gradient on hover */
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(142, 123, 255, 0.4);
}

.login-button:active{
	background:#4B3F97;	
	color:#ffffff;
}
