@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap');
	* {
		font-family: "Montserrat", sans-serif;
		letter-spacing: 0.5px;
	}
	body {
		margin: 0;
		padding: 0;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #13171C;
		box-shadow: inset 0px 0px 200px rgba(0, 0, 0, 0.5);
	}
	#redirecionamento{
		/*display: flex;
		justify-content: space-between;
		align-items: center;*/
		font-size: 13px;
		font-weight: 500;
	}
	#right{
		font-weight: 500;
		text-align: right;
		text-decoration: underline;
	}
	a {
		text-decoration: none;
		color: white;
	}
	#buttons {
		display: flex;
		margin-top: 20px;
	}
	#buttons button {
		flex: 1;
	}
	#error {
		font-size: 13px;
		padding-top: 10px;
		padding-bottom: 10px;
		color: rgb(5, 7, 20);
	}
	#resgatar {
		font-size: 14px;
		margin-top: 10px;
	}
	#painel {
		padding: 20px;
		width: 340px;
		margin-left: 20px;
		margin-right: 20px;
		color: white;
		background: #1A2026;
		border-radius: 3px;
		border-bottom: 2px solid #D3CE00;
		z-index: 3;
	}
	#titulo {
		text-align: center;
		font-size: 28px;
		font-weight: 400;
		margin-bottom: 10px;
	}
	#titulo2 {
		text-align: center;
		margin-top: 10px;
		margin-bottom: 10px;
		font-weight: 300;
		font-size: 15px;
	}
	.control {
		display: flex;
		flex-direction: column;
		padding-top: 20px;
		padding-bottom: 10px;
		position: relative;
	}
	#entrar {
		text-align: center;
		width: 100%;
		padding: 12px;
		border-radius: 3px;
		background-color: #13171C;
		color: white;
		border: 0;
		transition: transform 0.3s ease;
		font-size: 13px;
		margin-bottom: 10px;
	}
	#entrar:hover {
		transform: scale(1.009);
	}
	.control input {
		outline: none;
    padding: 12px;
    border-radius: 4px;
    background-color: #13171C;
    border: 0;
    color: white;
    font-size: 13px;
    font-weight: 300;
    text-align: left;
    transition: transform 0.3s ease;
	}
	input::placeholder {
    color: white;
	}
	.control input:hover {
    transform: scale(1.01);
	}
	.control .mudar-senha {
		position: absolute;
    top: 58%;
    right: 10px;
    transform: translateY(-58%);
    cursor: pointer;
    color: white;
	}
	@media screen and (max-width: 600px){
		body{
			overflow: hidden;
		}
	}