/**
 * _css/login-pane.css
 *
 * Copyright © 2020 Robert Tasarz <robert.tasarz@codewedo.com>
 * All Rights Reserved.
 *
 * This file is part of the Clacks project.
 **/

cs-login-dialog {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000c;
	z-index: 100;
	text-align: center;
	font-size: 14px;
}

.login-form {
	position: absolute;
	left:  calc(50% - 185px);
	top: calc(50% - 130px);
	background-color: white;
	border-radius: 2px;
	display: inline-block ;
	padding: 30px;
	padding-top: 45px;
	text-align: left;
	color: #444;
}

.login-form a {
	float: right;
	text-decoration: none;
	color: #999;
}

.login-form input {
	width: 300px;
	padding: 4px;
	margin-bottom: 20px;
	margin-top: 8px;
	transition: all 0.2s ease-in-out;
	border-style: solid;
	border-width: 1px;
	border-color: #ddd;
}

.login-form input:hover {
	box-shadow: 0 0 4px #aaa;
}

.login-form button {
	float: right;
	/*    background-image: linear-gradient(to right, #2665b2, #3d92d3); */
	background-color: #c01;
	border-radius: 2px;
	padding: 15px 30px;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: white;
	border-style: solid;
	border-width: 0;
	transition: all 0.2s ease-in-out;
}

.login-form button:hover {
	box-shadow: 0 0 4px #2665b2;
}
