/* static/css/login.css */

.login-container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	border: 2px solid #1f6feb;
	border-radius: 10px;
	box-shadow: 0 0 15px #1f6feb;
	background-color: #161b22;
    width: 500px;
    margin: auto;
}

form input[type="text"],
form input[type="password"] {
	display: block;
	width: 90%;
	box-sizing: border-box;
    margin: auto;
	margin-bottom: 1rem;
	padding: 0.75rem;
	border-radius: 5px;
}

form input[type="text"],
form input[type="password"] {
	background-color: #0d1117;
	border: 2px solid #30363d;
	color: #c9d1d9;
	transition: border 0.3s, box-shadow 0.3s;
}

form input[type="text"]:focus,
form input[type="password"]:focus {
	border-color: #1f6feb;
	box-shadow: 0 0 10px #1f6feb;
}

button {
    background-color: #21262d;
	color: #58a6ff;
	border: 2px solid #1f6feb;
    display: block;
	width: 75%;
	box-sizing: border-box;
    margin: auto;
	margin-bottom: 1rem;
	padding: 0.75rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
	background-color: #0d1117;
	box-shadow: 0 0 12px #58a6ff;
}