﻿html {
    font-size: 16px;
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(/Content/css/main/img/FondoLogin.png);
    background-size: cover;
}

#main-login, #form {
    height: 100%;
}


.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}


input {
    background: #fff;
    color: #3D3D3D;
    border: 1px solid #ccc;
    outline: none;
}

.gnarum_logo {
    background-image: var(--logo-gnarum);
    background-size: contain;
    background-repeat: no-repeat;
    width: 11em;
    height: 4em;
}



body {
    --wrapper-bg: 37 99 235;
    --wrapper-alpha: .25;
}

.dark body {
    --wrapper-bg: 29 29 36;
    --wrapper-alpha: .5;
}

.wrapper {
    height: 100%;
    width: 100%;
    background: rgb(var(--wrapper-bg) / var(--wrapper-alpha));
}

    .wrapper form {
        height: 100%;
    }

:root {
    --bg-1: #2b2f36;
    --bg-2: #111318;
    --glass: rgba(255,255,255,.06);
    --glass-2: rgba(255,255,255,.04);
}




.page {
    width: 100%;
    /*padding: 40px 22px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-card {
    width: min(980px, 100%);
    height: 540px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    background: var(--card);
}



/* LEFT */
.login-left {
    display: flex;
    backdrop-filter: blur(10px);
    align-items: center;
}

.login-form {
    padding: 90px 70px 90px;
    flex: 1;
    height: fit-content;
}

.title {
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: .2px;
}

.form {
    max-width: 380px;
}

.label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin: 14px 0 7px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.link {
    color: rgba(170,190,255,.9);
    text-decoration: none;
    font-size: 12px;
}

    .link:hover {
        text-decoration: underline;
    }

.input {
    width: 100%;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.20);
    padding: 0 12px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

    .input:focus {
        border-color: rgba(140,170,255,.45);
        box-shadow: 0 0 0 3px rgba(120,150,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
    }

.password-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .password-wrap .input {
        padding-right: 44px;
        margin-right: 15px;
    }


.btn {
    width: 100%;
    height: 40px;
    margin-top: 18px;
    border: 0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
}

    .btn:hover {
        filter: brightness(1.03);
        border: solid 1px var(--primary);
    }

    .btn:active {
        transform: translateY(1px);
    }


/* RIGHT */
.login-right {
    background: var(--card);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border-left: 1px solid var(--border);
}

.login-logo {
}

.login-gnarum {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
