@charset "utf-8";
/* CSS Document */
body {
    font-family: 'Heebo', sans-serif;
    background-color: #090a1e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #090a1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 20px;
	border: 1px solid #1b4b61;
}

h2 {
    color: #fff;
    margin-bottom: 20px;
}

label {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 12px 15px; /* Padding for spacing within the input */
    margin: 10px 0 20px;
    border: 1px solid #1b4b61;
    border-radius: 4px;
    box-sizing: border-box; /* Prevents padding from increasing input width */
}

textarea {
    width: 100%;
    padding: 12px 15px; /* Padding for spacing within the input */
    margin: 10px 0 20px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    box-sizing: border-box;
	resize: none;
	height: 100px;
}

button {
    background-color: #1b4b61;
    color: #FFF;
    border: none;
    padding: 12px 20px; /* Slightly more padding for a larger button */
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%; /* Full width for consistency */
    transition: background-color 0.3s ease;
	border-radius: 8px;
	margin-top: 10px;
}

button:hover {
    background-color: #1A326E;
}

.spacer {
	padding-bottom: 40px;
	padding-top: 20px;
}

a {
  text-decoration: none;
  color: #fff;
}
