/* login_content.html.twig */

body {
    background: var(--app-background-color); 
    padding: 15px; 
    font-size: 1rem;
    color: #212529;
    margin: 0;
}

.login {
    background-color: #e9f5ed;
    margin-top: 5%;
}

.page {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
}

.header-login {
    text-align: center;
}

.icon-login {
    display: inline-block;
    width: 70px;
    height: 70px;
}

.title-login {
    font-weight: bold;
    font-size: 24px;
}

.container-login {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-login {
    width: 350px;
    background-color: #fff;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 0 0 4px rgba(0, 0, 0, .16), 0 4px 8px rgba(0, 0, 0, .10);
    border-radius: 5px;
}

.p-25 {
    padding: 25px;
}

.form-login {
    width: 100%;
}

.form-login-title {
    text-align: center;
    display: block;
    width: 100%;
    padding-bottom: 30px;
    font-size: 24px;
    line-height: 1.2;
}

.form-input {
    font-size: 15px;
    line-height: 1.5;
    display: block;
    width: 100%;
    height: 45px;
    padding: 0 30px 0 54px;
    border-radius: 5px;
    border: 1px solid #d8dde4;
}

input:focus {
    border-radius: 5px;
    border: 1px solid #19C19F;
}

.form-focus-input {
    display: block;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.form-symbol-input {
    font-size: 17px;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 22px;
    pointer-events: none;
}

.symbol-input {
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
}

.form-container-submit {
    padding-top: 15px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.form-submit {
    font-size: 14px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background-color: #19C19F !important;
    border-color: #19C19F !important;
    line-height: 1.5;
}

.form-control {
    border-radius: .50rem;
}

input#username, input#password {
    height: 38px;
}

#remember-me.form-group {
    all: revert;
    font-size: 16px;
    padding: 0;
}

#remember-me label {
    all: revert;
    display: inline-block;
    margin-bottom: 0.5rem;
}