:root {
    --color-main-background: #1d2d44;
    --color-header: #35537a;
    --color-element-primary: #0082c9;
}

body#body-login {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Frutiger, Calibri, "Myriad Pro", Myriad, sans-serif;
    background-color: var(--color-main-background);
    background: linear-gradient(to bottom, #35537a 0%, #1d2d44 100%);
    background: -webkit-linear-gradient(top, #35537a 0%, #1d2d44 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 10px;
}

.logo svg {
    width: 252px;
    height: 86px;
    display: block;
    margin: 0 auto;
}

.slogan {
    display: none;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

p.grouptop, p.groupbottom {
    margin: 0;
    padding: 0;
}

.grouptop input, .groupbottom input {
    width: 100%;
    padding: 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
}

.grouptop input {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: none;
}

.groupbottom input {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.grouptop input:focus, .groupbottom input:focus {
    background-color: #fff;
    color: #333;
    outline: none;
    border-color: #fff;
}

.grouptop input::placeholder, .groupbottom input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.grouptop input:focus::placeholder, .groupbottom input:focus::placeholder {
    color: #999;
}

.remember-login {
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.remember-login input {
    margin-right: 8px;
    cursor: pointer;
}

button {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

button:disabled {
    opacity: 0.5;
    cursor: wait;
}

.error-message {
    background-color: #d2322d;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    display: none;
}

footer {
    text-align: center;
    margin-top: 50px;
}

footer p.info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
