/* 
    Created on : 2019.10.01., 13:12:08
    Author     : Fericsán Gábor
*/

#bb-card-wrapper {
    max-width: 450px;
    background-color: #ffffff;
    margin: 90px auto 80px auto;
    padding: 0px 0 20px 0;
    border: 1px solid #dad4da;
    border-radius: 6px;
}

#bb-card-wrapper .login-link {
    text-decoration: underline;
    color: #5f6d89;
}

#bb-card-wrapper #inputs {
    margin: 0 80px;
    margin-top: 40px;
    position: relative;
}

#bb-card-wrapper #inputs-all {
    margin: 0 40px;
    margin-top: 40px;
    position: relative;
}

#bb-card-wrapper input[type=text], input[type=password], input[type=email] {
    width: 100%;
    height: 42px;
    position: relative;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    border: thin solid #bed2e5;
    color: #000000;
    font-size: 13px;
}

#bb-card-wrapper input[type=text]:hover,
#bb-card-wrapper input[type=password]:hover,
#bb-card-wrapper input[type=email]:hover {
    border: thin solid #3a86c8;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#bb-card-wrapper input[type=text]:focus,
#bb-card-wrapper input[type=password]:focus,
#bb-card-wrapper input[type=email]:focus {
    border: thin solid #9ab8d7;
    border-left: thin solid #e84f4c;
    outline: none;
}

#bb-card-wrapper input[type=submit] {
    color: #ffffff;
    font-size: 18px;
    background-color: #3B5998;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    padding: 15px;
}

#bb-card-wrapper input[type=submit]:hover {
    background-color: #4568b2;
    color: #ffffff;
}

#bb-card-wrapper input[type=submit]:focus {
    outline: none;
    border: 0;
}

#bb-card-header, #bb-card-header-red {
    font-size: 19px;
    margin-bottom: 20px !important;
    margin-top: 0px !important;
    padding-top: 24px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 27px !important;
    border-top: none !important;
}

#bb-card-header-red {
    color: #ffffff;
    background-color: #DE0A2A;
    border-bottom: 1px solid #e0e0e0;
}

#bb-card-header {
    color: #6a7893;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

#bb-card-header.inline-head-row, #bb-card-header-red.inline-head-row {
    margin-top: 24px !important;
    border-top: 1px solid #e0e0e0 !important;
}