body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #f1f1f1;
}
.admin-container {
	/*padding: 20px;*/
	text-align: center;
}


form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    color: #333;
}

form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #555;
}

form p {
    margin-top: 10px;
    color: #979797;
}

/*****/

/*Backend Main Page */

.content {
	margin-left: 250px;
	padding: 20px;
	float:left;
	text-align: left;
}
/*****/

.text{
	height:300px;
}


.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: gray;
	opacity:0.3;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
.spinner {
	border: 8px solid rgba(255, 255, 255, 0.3);
	border-top: 8px solid white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	display: none;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}