/* made by recanman */
html {
    background-color: #001524;
    font-family: JetBrains Mono Variable, monospace;
    color: #ffecd1;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 540px;
    margin: 0 auto;
}

a {
    color: #ff7d00;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-container img {
    height: 60px;
}

.registration-info {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #13293d;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin: 0 auto;
}

input {
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    background: #18324a;
    color: #ffecd1;
    font-size: 1rem;
}

input:focus {
    background: #204060;
    outline: 2px solid #ffecd1;
}

button[type="submit"] {
    padding: 0.75rem 1rem;
    background: #ff7d00;
    color: #ffecd1;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.25s;
}

button[type="submit"]:hover {
    background: #d55612;
}

hr {
	margin: 2rem 0.5rem;
}

code {
	user-select: all;
	color: #ffecd1;
	background: #18324a;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2rem;
	color: #ffecd1;
}
