﻿html, body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
}

.box {
    max-width: 800px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 1em 1em 1.5em #d0d0d0, -1em -1em 1.5em #f0f0f0;
    padding: 0.5em 2em 2em 2em;
    margin: 0;
    border-radius: 1em;
}

.louisa {
    margin: 1em;
    color: transparent;
    background-color: #6F6F6F;
    font: bold 1.5em arial, sans-serif;
    text-shadow: 0.05rem 0.05rem 0.1em rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input {
    margin-bottom: 1em;
    padding: 0.5em;
    border-radius: 0.2em;
    border: 0;
    background: #e0e0e0;
    box-shadow: inset 0.1em 0.1em 0.1em #c7c7c7, inset -0.1em -0.1em 0.1em #f9f9f9;
    -webkit-box-shadow: inset 0.1em 0.1em 0.1em #c7c7c7, inset -0.1em -0.1em 0.1em #f9f9f9;
    -moz-box-shadow: inset 0.1em 0.1em 0.1em #c7c7c7, inset -0.1em -0.1em 0.1em #f9f9f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: box-shadow 0.2s ease-in-out;
}


    .input:focus {
        outline: none;
        box-shadow: inset 0.4em 0.4em 0.4em #c7c7c7, inset -0.4em -0.4em 0.4em #f9f9f9;
        -webkit-box-shadow: inset 0.4em 0.4em 0.4em #c7c7c7, inset -0.4em -0.4em 0.4em #f9f9f9;
        -moz-box-shadow: inset 0.4em 0.4em 0.4em #c7c7c7, inset -0.4em -0.4em 0.4em #f9f9f9;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

.wngMsgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 10em;
    height: 1.2em;
}

.wngMsg {
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: transparent;
    background-color: #6F6F6F;
    font: bold 1em arial, sans-serif;
    text-shadow: 0.05rem 0.05rem 0.1em rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    width: 10em;
    height: 3em;
    border: 0;
    border-radius: 0.5em;
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
    box-shadow: 0.2em 0.5em 1em #cacaca, -0.2em -0.5em 1em #e7e7e7;
    transition: all 0.1s;
}

.btn:active {
    transform: scale(0.9);
}

.btnWord {
    color: #636363;
    font-size: 1rem;
    font-weight: 700;
    color: transparent;
    background-color: #6F6F6F;
    font: bold 1.5em arial, sans-serif;
    text-shadow: 0.05rem 0.05rem 0.1em rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}
