@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter_Regular.woff);
  font-weight: regular;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter_Bold.woff);
  font-weight: bold;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff9e5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 1px solid #fff9e5;
	background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.logo {
    max-width: 65%;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

p {
    color: #666;
    margin-bottom: 1rem;
}

a {
	color: #ffcc00;
	text-underline-offset: 2px;
}
a:hover {
	color: #fff9e5;
	text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
}

input, button {
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

button {
    background-color: #ffcc00;
    color: #333;
	margin-top: 20px;
	font-family: 'Inter', sans-serif;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #fff9e5;
}

label {
    font-size: 0.65rem;
    margin-top: 0.5rem;
	color: #666;
}

.errors {
    list-style: none;
    padding: 0;
    color: red;
    font-size: 0.9rem;
}

.success {
    color: green;
    font-weight: bold;
}
