:root {
    --background: #F1F3F9;
    --panel-white: #FFFFFF;
    --text-gray: #646566;
    --text-dark-blue: #17151E;
    --positive-green: #2DCE89;
    --negative-red: #F51010;
    --hover-gray: #E5E5E5;
    --blue: #2656C9
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serifs
}

body {
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.gruppy-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: auto;
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gruppy-logo:hover {
    opacity: 1;
}

button {
    cursor: pointer;
}

[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.main-login {
    width: 100vw;
    height: 100vh;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 60vw;
    height: 100vh;
    display: flex;
    background-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.left-login > img {
    width: 100%;
    object-fit: cover;
}

.icon {
    width: 25%;
}

.tamanho-box {
    height: 50%;
}

.right-login {
    width: 40vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
}

.card-login > img {
    width: 70%;
    margin: 20px;
}

.text-simple {
  width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
    white-space: nowrap;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield > label {
  color: var(--text-dark-blue);
  margin-bottom: 10px;
    font-weight: 600;
    display: block;
}

.textfield .label-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.textfield .label-row label {
    margin-bottom: 0 !important;
    color: var(--text-dark-blue);
    font-weight: 600;
}

.textfield .label-row .forgot-password {
    white-space: nowrap;
    margin-left: auto;
}

.textfield .input-group-addon {
    background-color: var(--panel-white);
    border-color: var(--text-gray);
    color: var(--text-gray);
}

.textfield .form-control {
    border-color: var(--text-gray);
    background: var(--panel-white);
    font-size: 12pt;
    height: 42px;
}

.textfield .form-control::placeholder {
    color: var(--text-gray);
}

.forgot-password {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1a4497;
    text-decoration: none;
}

.forgot-password .glyphicon {
    font-size: 0.9em;
    margin-right: 4px;
}

.esconder {
    display: flex;
}

.btn-login {
    width: 100%;
    padding: 12px 0px;
    margin: 24px 0px 0px 0px;
    border: none;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--panel-white);
    background: #8B5CF6;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
 background: #7C3AED;
}

.btn-login:active {
    background: #6D28D9;
}

.btn-login .glyphicon {
    margin-right: 8px;
}

.panel-default:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 transform: translateY(-2px);
    transition: all 0.3s ease;
}

.btn-google {
    border: none;
    outline: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--panel-white);
    background: var(--blue);
}

.btn-apps {
    border: none;
}

@media (min-width: 940px) {
    .esconder {
  display: none;
    }
}

#img-logo {
    width: 10vw !important;
}

.card-login > a {
    color: var(--blue);
    width: 100%;
    display: flex;
 justify-content: flex-end;
    margin-top: 15px;
    text-decoration: none;
}

@media (max-width: 1500px) {
    .card-login {
        width: 80%;
    }
}

@media (max-width: 940px) {
    .card-login {
 width: 100%;
    }

    .left-login {
 display: none;
    }

    .right-login {
        width: 100vw;
    }

    #img-logo {
        width: 55vw !important;
    }

    .gruppy-logo {
        width: 50px;
        top: 15px;
        right: 15px;
    }
}
