@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PT Serif , sans-serif, arial;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.login-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    padding: 1.25rem;
    text-align: center;
}

.login-group {
    margin-bottom: 1.25rem;
}

.login-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #5f5f5f;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
}

.login-group button {
    width: 50%;
    min-width: min-content;
    padding: 1rem 0.625rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #3f3f3f;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

.login-group button:hover {
    background-color: #000;
}

.login-group button:active {
    background-color: #000;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100vw;
    text-align: center;
    padding: 0.625rem;
    background-color: #000;
    color: #fff;
}