@font-face {
    font-family: 'PassMind';

    src: url('static/fonts/PasseroOne-Regular.ttf');

    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
    margin: 0;
}

.container {
    width: 400px;
    text-align: center;
}

h1 {
    font-family: 'PassMind';
    font-size: 48px;
    margin-bottom: 10px;
}

.subtitle {
    color: #bbbbbb;
    margin-bottom: 30px;
}

input {
    width: 380px;
    padding: 10px;

    border: none;
    border-radius: 10px;

    margin-bottom: 15px;

    font-size: 16px;
}

button {
    width: 100%;
    padding: 20px;

    border: none;
    border-radius: 10px;

    background-color: #4f46e5;
    color: white;

    font-size: 16px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.result {
    margin-top: 25px;
    color: #aaaaaa;
}