﻿
.blur-picture {
    position: fixed;
    z-index: 0;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    left: 0;
    right: 0;
}

.contentZone {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-card {
    width: 348px;
    background-color: #F5F5F5;
}

.input-fields {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logoToolbar {
    position: relative;
    z-index: 9999;
    width: 100%;
    height: 60px;
    background-color: rgb(48,70,81);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 86px;
}

.logo-container {
    width: 348px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    height: 33%;
}

.silverback-logo-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.silverback-logo {
    height: 45%;
}

.m42-login-actions-container {
    font-size: 16px;
    line-height: normal;
    width: 100%;
    background-color: transparent;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 48px;
}

.m42-login-button {
    background-color: #fb8529 !important;
    width: 50%;
}

.avatar-picture-container {
    display: flex;
    justify-content: center;
}

.avatar-picture {
    border: 3px solid;
    border-color: white;
    border-radius: 50%;
    margin: 20px;
    margin-top: 36px;
    width: 84px;
    height: 84px;
}

.mdl-textfield__label:after {
    background-color: #fb8529;
    bottom: 20px;
    content: '';
    height: 2px;
    left: 45%;
    position: absolute;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    visibility: hidden;
    width: 10px;
}

.mdl-textfield--floating-label.is-focused .mdl-textfield__label {
    color: #fb8529;
    font-size: 14px;
    top: 4px;
    visibility: visible;
}

.mdl-textfield--floating-label.is-dirty .mdl-textfield__label {
    color: #fb8529;
    font-size: 12px;
    top: 4px;
    visibility: visible;
}

.error-message {
    color: rgb(196, 26, 26);
    font-size: 14px;
}

.validation-summary-errors {
    color: rgb(196, 26, 26);
    margin-right: 14px;
}




/*responsive behaviour*/
@media screen and (max-width:420px) {
    .login-card {
        width: 90%;
        height: 90%;
    }

    .logo-container {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .m42-login-button {
        width: 300px;
    }

    .logoToolbar {
        width: 100%;
        height: 48px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .logo {
        height: 33%;
    }

    .mdl-textfield {
        position: relative;
        font-size: 16px;
        display: inline-block;
        box-sizing: border-box;
        width: 90%;
        max-width: 90%;
        margin: 0 8px;
        padding: 20px 0;
    }

    .m42-login-actions-container {
        padding: 8px 0;
    }

    .m42-login-button {
        background-color: #fb8529 !important;
        width: 90%;
    }
}

@media screen and (max-height:600px) {
    .login-card {
        height: 90%;
    }

    .logoToolbar {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-height:480px) {
    .m42-login-actions-container {
        margin-bottom: 24px;
    }
}
