﻿:root {
	--main-bg-color: #23486d;
	--container-bg-color: #ffffff;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-color: var(--main-bg-color);
	display: grid;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.login-container {
	background-color: var(--container-bg-color);
	padding: 1.5rem;
	border-radius: 0.5rem;
	text-align: center;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	grid-area: 1/1;
}

.company-logo {
	max-width: 15rem;
	margin-bottom: 1rem;
}

.main-text {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.sub-text {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	width: 80%;
	margin-left: 10%;
}

label {
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	width: 80%;
	margin-bottom: 0.5rem;
	margin-left: 10%;
	text-align: left;
}

.row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
	width: 80%;
	margin-left: 10%;
}

input {
		width: 80%;
		height: 2.5rem;
		display: inline-block;
		padding: 0.5rem;
		box-sizing: border-box;
		border: 0.1rem solid #ccc;
		border-radius: 0.2rem;
		margin-bottom: 1.5rem;
	}

	.action-button {
		width: 10rem;
		padding: 0.5rem;
		background-color: #337ab7;
		color: #fff;
		border: none;
		border-radius: 0.2rem;
		cursor: pointer;
	}

	.forgot-password {
		width: 30rem;
		display: inline-block;
		text-align: right;
		margin-top: 0.5rem;
		font-size: 1rem;
	}

	hr {
		border: 0;
		height: 0.1rem;
		background: #ccc;
		margin: 1.5rem 0;
	}

	.signup-links {
		text-align: center;
		font-size: 0.8rem;
		font-weight: bold;
	}

		.signup-links a {
			text-decoration: none;
		}

	.error {
		color: red;
		font-size: 0.8rem;
		font-weight: bold;
		margin-bottom: 1.5rem;
	}

	.success {
		color: green;
		font-size: 0.8rem;
		font-weight: bold;
		margin-bottom: 1.5rem;
	}

	li {
		text-align: left;
	}
