* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont;
}

.logotype-wrapper {
    height: 70vh;
    width: 70vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.logotype-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        25deg, 
        #00ffff,
        #00b3ff,
        #8a2be2,
        #00ffcc,
        #1e90ff,
        #00fa9a,
        #4b0082,
        #20b2aa,
        #7b68ee
    );
    background-size: 300% 300%;
    animation: gradientShift 30s ease-in-out infinite;
    mix-blend-mode: multiply;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: .9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bottom-message {
    cursor: default;
    position: fixed;
    bottom: 0;
    line-height: 1;
    padding: 9px 0 18px 0;
    width: 376px;
    height: 21px;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, .1) -25%,
        rgba(0, 0, 0, .8) 100%);
    box-shadow: 
        0 -1px 0 rgba(255, 255, 255, .3),
        inset -1px 0 0 rgba(255, 255, 255, .1),
        inset 0 -1px 0 rgba(255, 255, 255, .0),
        inset 1px 0 0 rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c8c8c8;
    text-shadow: 0 0 1px #000;
    font-size: 16px;
    font-weight: 300;
    z-index: 4;
    transition: transform .3s ease-in-out;
}

.panel-container {
    position: fixed;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity .3s ease-in-out;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: scroll;
}

.panel-container h2 {
    position: relative;
    padding: 0;
    height: auto;
    width: 280px;
    cursor: default;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 3px #000;
    margin: -57px 0 7px 0;
    transition: transform .8s ease-in-out;
}

.auth-form {
    transition: transform .8s ease-in-out;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, .1) -25%,
        rgba(0, 0, 0, .8) 100%);
    border-radius: 40px;
    box-shadow: 
        0 -2px 0 rgba(255, 255, 255, .3),
        inset -1px 0 0 rgba(255, 255, 255, .1),
        inset 0 -1px 0 rgba(255, 255, 255, .0),
        inset 1px 0 0 rgba(255, 255, 255, .1);
    padding: 21px 48px 21px 48px;
}

.panel-container h3 {
    display: block;
    line-height: 1;
    width: 280px;
    padding: 0;
    cursor: default;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: #c8c8c8;
    margin-bottom: 21px;
    transition: transform .1s ease-in-out;
}

input::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #c8c8c8;
}

input {
    display: block;
    height: 36px;
    width: 252px;
    padding: 2px 14px;
    border: none;
    box-shadow: 0 0 1px #fff;
    background: rgba(0, 0, 0, .3);
    border-radius: 20px;
    color: #c8c8c8;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 14px;
}

input:focus {
    background: rgba(0, 0, 0, 1);
    transition: all ease-in-out .3s;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

button {
    display: block;
    height: 40px;
    width: 280px;
    background: radial-gradient(circle,
        rgba(0, 172, 254, 0.5) 25%,
        rgba(0, 172, 254, 0.4) 50%,
        rgba(0, 172, 254, 0.3) 75%,
        rgba(0, 172, 254, 0.2) 100%);
    border: none;
    box-shadow: 0 0 1px #fff;
    border-radius: 20px;
    font-weight: 300;
    color: #c8c8c8;
    text-shadow: 0 0 1px #000;
    font-size: 16px;
}

.button-loader {
    animation: blink .8s infinite;
}

button:hover {
    background: radial-gradient(circle,
        rgba(0, 172, 254, 0.6) 25%,
        rgba(0, 172, 254, 0.5) 50%,
        rgba(0, 172, 254, 0.4) 75%,
        rgba(0, 172, 254, 0.3) 100%);
    cursor: pointer;
}

button:active {
    cursor: pointer;
    transform: scale(.99);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .8; }
}

.shake {
    animation: shake .2s linear;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    50% {
        transform: translateX(4px);
    }
    75% {
        transform: translateX(-4px);
    }
    100% {
        transform: translateX(0);
    }
}

.user-interface {
    display: none;
    opacity: 0;
    position: relative;
    height: 100%;
    width: 100%;
    color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 21px 21px 58px 21px;
    transition: opacity .3s ease-in-out;
}

.property-title {
    width: 70vw ;
    padding: 0 21px;
    text-align: left;   
    font-size: 21px;
    font-weight: 800;
    text-shadow: 0 0 2px #000;
    margin-bottom: 7px;
    cursor: default;
}

.property-window {
    height: max-content;
    width: 70vw;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, .1) -25%,
        rgba(0, 0, 0, .8) 100%);
    border-radius: 40px;
    box-shadow: 
        0 -2px 0 rgba(255, 255, 255, .3),
        inset -1px 0 0 rgba(255, 255, 255, .1),
        inset 0 -1px 0 rgba(255, 255, 255, .0),
        inset 1px 0 0 rgba(255, 255, 255, .1);
    padding: 21px;
}

.device {
    height: 20px;
    width: max-content;
    padding: 2px 8px;
    border-radius: 20px;
    box-shadow: 0 0 1px #fff;
    background: rgba(255, 255, 255, .1);
    color: #c8c8c8;
    font-weight: 300;
    margin-bottom: 14px;
    margin-right: 14px;
    cursor: default;
}

.active::after {
    color: #00ffc8;
    font-weight: 900;
    content: ' •';
}

.camera-wrapper {
    height: max-content;
    width: 100%;
}
