html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

h2 {
    color: #000;
    text-align: center;
    margin: 0;
}

.title {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 2.5em;
    color: #000;
	cursor: default;
}
#form-title {
	cursor: default;
}

.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #000;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #fff;
	font-size: 16px;
    color: #000;
}

button {
    background-color: #fff;
    padding: 10px;
    cursor: pointer;
	border: none;
	border-radius: 10px;
    transition: background-color 0.3s;
	font-size: 16px;
}

button:hover {
    background-color: #D3D3D3;
}

#toggleForm {
    background-color: #fff;
    color: #000;
    border: none;
    flex: 1;
    cursor: pointer;
    transition: color 0.3s;
}

#toggleForm:hover {
	text-decoration: underline;
}

#message, #register-message {
    margin-top: 10px;
    color: red;
    text-align: center;
}