body {
	background: linear-gradient(135deg, #4e73df, #1cc88a);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Segoe UI', sans-serif;
}
.login-card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 4px 25px rgba(0,0,0,0.15);
	padding: 2rem;
	width: 100%;
	max-width: 400px;
	animation: fadeInUp 0.8s ease-in-out;
}
.login-card h3 {
	font-weight: 600;
}
.btn-login {
	background: #4e73df;
	color: #fff;
	font-weight: 500;
	transition: 0.3s;
}
.btn-login:hover {
	background: #375ac4;
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
#error-message {
    font-size: 13px;
    font-weight: 600;
    margin: 20px 0;
    text-decoration: underline
}
.form-inline label {
    padding-left: 10px;
    margin: 0;
    cursor: pointer
}

.btn.btn-primary {
    margin-top: 20px;
    border-radius: 15px
}
.input-field {
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ddd;
    color: #4343ff
}

input[type='text'],
input[type='password'] {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%
}

.fa-eye-slash.btn {
    border: none;
    outline: none;
    box-shadow: none
}