@charset "UTF-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
	color: white;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
	background-color: #222;
    padding: 2rem;
    border-radius: 8px;
	border-width: 1px;
	border-color: white;
	border-style: solid;
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
}

input {
    width:278px;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 300px;
    padding: 10px;
    margin: 8px 0;
    background: #AF0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background: #AF6666;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}
