/* Login CSS */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

#logo {
    filter: invert(1);
    width: clamp(10rem, 50%, 20rem);
    margin-bottom: 2rem;
}

form {
    width: 100%;
    max-width: 400px;
}

input {
    font-style: normal;
    font-weight: 500 !important;
    border: 2px solid #757575 !important;
    font-size: 1.2rem !important;
    border-radius: 14px !important;
}

.btn-primary {
    width: 100%;
    background: #000000 !important;
    border: 1px solid #000000 !important;
    font-size: 1rem !important;
    height: 3rem;
    font-weight: 500;
    border-radius: 14px !important;
}

#sign-in-button {
    margin-top: 1rem;
}
