* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
    color: rgb(9, 2, 34);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.content {
    max-width: 512px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-img {
    width: 64px;
    height: 64px;
}

label {
    font-size: 1.75rem;
    font-weight: bold;
    color: rgb(9, 2, 34);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

small {
    font-size: 0.9rem;
    color: rgb(9, 2, 34);
    letter-spacing: 0.1rem;
}