

@import url(../fonts/fonts.css);

* {
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    margin: 0;
    font-family: Avenir, sans-serif;
}


#container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100vh;
}

#logo {
    width: 21rem;
    margin-bottom: 2em;
}

#logo > * {
    font-size: 2em;
    color: #007bff;
}

.quote {
    font-size: 16px;
    font-family: LibreCaslonText-Regular, serif;
    width: 27rem;
    padding: 0.5em;
}

.noun {
    font-family: LibreCaslonText-Italic, serif;
}

#main {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 8px;
    background-color: #ffffff;
    padding: 2em;
    min-height: 20em;
    width: 32.36em;
    min-width: 240px;
    margin-bottom: 2rem;
    font-size: 16px;
    font-family: LibreCaslonText-Regular, serif;
}

#tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 1em;
}

#left-tab, #right-tab {
    flex: 1;
    text-align: center;
    padding: 0.5em;
    background: transparent;
    transition: background-color 0.3s;
}


#left, #right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em;
    padding-top: 1em;
    padding-bottom: 0.5em
}



form {
    width: 100%;
}


dl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


dt {
    display: inline-block;
    width: 9em;
    margin-bottom: 1em;
}

dd {
    display: inline-block;
    margin-inline-start: 0;
}

input[type="text"], input[type="password"] {
    width: 14em;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #888;
    border-radius: 4px;
}

button {
    font-family: Futura, sans-serif;
    width: 14em;
    padding: 0.5em;
    border: none;
    border-radius: 4px;
    background-color: beige;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: tan;
}

.hidden {
    display: none !important;
}

.active {
    background-color: #e9ecef !important;
}

#footer {
    width: 100%;
    text-align: center;
    padding: 1em;
    background-color: beige;
}

@media (max-width: 640px) {
    #main {
        width: 19rem;
    }

    .quote {
        width: 19rem;
    }
}

