@font-face {
    font-family: 'AmericanTypewriter';
    src: url('fonts/AmericanTypewriter.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AmericanTypewriter-Bold';
    src: url('fonts/AmericanTypewriter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: 'AmericanTypewriter', serif;
}

body {
    margin: 0;
    padding: 40px;
    background: #f5f5f5;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border: 2px solid #0d1d53;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    background-image: url("images/stitch.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-blend-mode: overlay;
}

h1 {
    font-family: 'AmericanTypewriter-Bold', serif;
}

h2 {
    margin-bottom: 24px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    background: #0d1d53;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

button:hover {
    background: #2153a7;
}

.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}