 body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #00a2ff, #0072ff);
}

.login-container {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	width: 300px;
	padding: 40px;
	text-align: center;
}

.login-container h1 {
	margin-bottom: 20px;
	font-size: 24px;
	color: #333333;
}

.login-container input[type="text"], 
.login-container input[type="password"] {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border-radius: 8px;
	border: 1px solid #dddddd;
	box-sizing: border-box;
}

.login-container input[type="submit"] {
	width: 100%;
	padding: 10px;
	margin-top: 20px;
	border-radius: 8px;
	background-color: #0078d7;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

.login-container input[type="submit"]:hover {
	background-color: #005bb5;
}

.login-container p {
	margin-top: 20px;
	color: #666666;
}
/* Base styles for the success and error divs */
.success, .error {
    width: 300px;
    padding: 20px;
    color: white;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Start in the center, scaled down */
    z-index: 1000;
    opacity: 0; /* Initially hidden */
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Success div styles */
.success {
    background-color: #4CAF50; /* Green */
}

/* Error div styles */
.error {
    background-color: #f44336; /* Red */
}

/* Show animation: scale up and fade in */
.show {
    transform: translate(-50%, -50%) scale(1); /* Bring to normal size */
    opacity: 1; /* Fade in */
}

/* Hide animation after a few seconds: fade out and scale down */
.hide {
    transform: translate(-50%, -50%) scale(0); /* Scale down */
    opacity: 0; /* Fade out */
    transition: transform 0.5s ease, opacity 0.5s ease;
}
