@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html,
body {
    margin: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #262626;
    color: white;
    text-align: center;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.providers {
    max-width: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header p {
    font-style: italic;
}

h1 {
    margin: 0;
    font-weight: bold;
    font-size: 10vmin;
    text-align: center;
    font-weight: 600;
}

p {
    margin: 0px 0px 8px 0px;
    font-size: 18px;
}

.login {
    color: black;
    display: flex;
    align-items: center;
    width: 200px;
    padding: 13px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgb(50, 50, 50);
    text-decoration: none;
}

button {
    border: 0;
    color: black;
    background-color: white;
    font-size: 16px;
    box-shadow: 0px 0px 10px 0px rgb(50, 50, 50);
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.login div {
    flex-grow: 1;
    text-align: center;
}

.user {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    gap: 6px;
}

.user-icon {
    background-size: cover;
    height: 36px;
    width: 36px;
    border-radius: 50%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

label {
    font-size: 18px;
}

input {
    width: 200px;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
}

.error-info {
    color: #dc2626;
    font-size: 14px;
}

a {
    color: black;
    text-decoration: none;
}