@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&family=Noto+Sans&family=Teko:wght@400;500&display=swap');

input {
    all: unset;
    box-sizing: border-box;
}

html {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
    align-items: center;
    background-image: linear-gradient( 99.9deg, rgba(27,24,31,1) 21.2%, rgba(50,4,89,1) 84.8% );
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.app {
    height: calc(100vh - 16px);
    width: calc(100vw - 16px);

    .next-event {
        background-color: red;
    }

    .time-until {
        display: flex;
        background-color: green;
        font-size: 3em;
        font-weight: bold;
        color: white;
        text-align: center;

        .days-until {
            background-color: blue;
            flex-grow: 1;
        }

        .weeks-until {
            background-color: purple;
            flex-grow: 1;
        }
    }
}

.login__form {
    background: #63326E;
    box-shadow: #181818 4px 4px 4px;
    border-radius: 0.5em;
    width: calc(100vw - 16px);

    input {
        background: #ddd;
        border-radius: 0.5em;
        text-align: left;
        padding: 0.25em 0.5em;
        width: 95%;
    }

    button {
        background: #fff;
        border-radius: 0.5em;
        width: 100%;
        padding: 0.5em 0;
        font-weight: bold;
    }
}

.login__div {
    width: 100%;
    text-align: center;
    margin: 0.75em 0 0;
}

.login__header {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-shadow: #111 4px 4px 2px;
    padding-bottom: 0.25em;
}
