html, body {
    background-color: var(--primary-color);
}

.login-section {
    background-color: var(--secondary-color);
    width: 100%;
    height: 100vh;
    display: flex;
}

.login-box {
    background-color: var(--primary-color);
    height: 100vh;
    width: 500px;
    color: var(--font-color);
}

.logo-container {
    margin: 0 auto;
    width: 300px;
    background-image: url('/src/identity/img/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 300px;
    margin-top: 30px;
}

.login-title {
    text-align: center;
}

form {
    width: 90%;
    margin-left: 5%;
}

.form-group {
    margin-top: 16px;
}

.form-group > label {
    font-size: 12px;
    color: var(--accent-color);
    padding-left: 5px;
}

.form-group > input {
    width: 100%;
    margin: 0 auto;
}

input[type=text], input[type=password] {
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--third-color);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    outline: none;
    color: var(--font-color);
    transition: var(--transition);
    font-size: 16px;
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100% - 12px);
}

input[type=text]:hover, input[type=password]:hover {
    border-bottom: 1px solid var(--accent-color);
}

input[type=text]:focus, input[type=password]:focus {
    border-bottom: 1px solid var(--accent-color);
    /* border-left: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
    border-top: 1px solid var(--accent-color); */
    background-color: var(--third-color);
}

input[type=submit] {
    width: 100%;
    padding: 5px;
    border: 1px solid var(--third-color);
    background-color: var(--third-color);
    color: var(--font-color);
    margin-top: 30px;
    outline: none;
    height: 60px;
    font-weight: 300;
    font-family: var(--sober-font);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

input[type=submit]:hover {
    background-color: var(--fourth-color);
}

input[type=submit]:active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.background-box {
    height: 100vh;
    width: calc(100% - 500px);
    position: relative;
}

.error-msg {
    color: red;
    width: 80%;
    margin-left: 10%;
    text-align: center;
    margin-top: 300px;
    font-size: 30px;
}

.cite {
    position: absolute;
    bottom: 30px;
    width: 80%;
    left: 10%;
    text-align: center;
}

.cite-text {
    color: var(--font-color);
    font-style: italic;
    font-size: 18px;
}

.cite-author {
    color: var(--secondary-font-color);
    font-size: 30px;
    font-weight: 300;
}

.sober-word {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .login-section {
        background-color: transparent;
        width: 100%;
        height: unset;
        flex-wrap: wrap;
    }

    .logo-container {
        height: 128px;
        max-width: 80%;
    }

    .login-box {
        height: unset;
    }

    .login-title {
        text-align: center;
        margin: 0;
    }

    .background-box {
        height: fit-content;
        width: 100%;
        background-color: transparent;
    }
    
    .error-msg {
        color: red;
        width: calc(100% - 20px);
        margin-left: 0;
        text-align: center;
        font-size: 12px;
        margin-top: 0;
        padding: 10px;
    }

    .cite {
        position: relative;
        width: calc(100% - 20px);
        text-align: center;
        bottom: unset;
        left: unset;
        padding: 10px;
    }
    
    .cite-text {
        color: var(--font-color);
        font-style: italic;
        font-size: 12px;
    }
    
    .cite-author {
        color: var(--secondary-font-color);
        font-size: 16px;
        font-weight: 300;
    }
}