.main {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: calc(100% - 175px);
}

html {
    min-height: 500px;
}

.content {
    width: 60%;
    max-width: 400px;
}

.logo {
    max-height: 25vh;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo > div {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex-wrap: nowrap;
}

.logo img {
    margin-bottom: 10px;
}

.connect {
    height: 52px;
    width: 100%;
    border: 2px solid var(--blue1);
    border-radius: 2px;
    background-color: rgba(0,74,255,0.5);
    color: white;
    margin-top: 25px;
}

#login {
    color: white;
}

.input {
    background-color: rgba(255,255,255,0.2);
    border: none;
    height: 50px;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    color: white;
    padding-left: 50px;
}

.focusable {
    outline-offset: 0;
    outline: solid 1px rgba(255, 255, 255, 0);
}

.focusable:focus {
    outline: solid 1px rgba(255, 255, 255, 1);
    transition: all 0.3s;
}

.connect {
    filter: brightness(1);
}

.connect:active {
    filter: brightness(1.5);
    transition: all 0.2s;

}

.field {
    position: relative;
}

.input-icon {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 25px;
}

.errors {
    color: red
}
