﻿#AccountContainer {
    display: flex;
    align-items: center;
    width: 500px;
    height: 100%;
    margin: 0 auto;
}

.page-content {
    background: url(../../Content/site/images/account_ft_bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

.account_nav_container {
    position: fixed;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .05);
    top: 0;
    left: 0;
    height: 61px;
    z-index: 10;
    background: #fff;
    width: 100%;
    transition: top .4s cubic-bezier(.3,.02,.16,.79) !important;
}

.account_nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 61px;
    padding: 0 24px;
}

.account_panel {
    width: 500px;
    padding: 20px 45px 45px;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(134deg, #092f42 0%, #0d384d 40.09%, #1a5978 100%);
}

    .account_panel h5 {
        font-size: 32px;
        font-weight: 600;
        line-height: 61px;
        color: #ffffff;
        text-transform: unset;
    }

    .account_panel form {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }

        .account_panel form .base-input {
            border-radius: 88px;
            background: #fff;
            box-shadow: 0 4px 84px 0 rgba(0, 0, 0, .07);
            color: #787878;
            font-size: 16px;
            line-height: 27px;
            border: none;
            padding: 0 30px;
            min-height: 50px;
            flex: 1;
        }

        .account_panel form .base-btn {
            padding: 0 24px;
            align-items: center;
            border-radius: 88px;
            background: #EA2A49;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            border: none;
            height: 48px;
        }

    .account_panel .elem_panel {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size:14px;
    }

    .account_panel .account_link {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #ffffff;
    }

    .account_panel .account_validation_panel, label.error {
        margin: -25px 0;
        height: 25px;
        position: relative;
        color: #EA2A49;
        text-transform: uppercase;
        flex-direction: column;
        display: flex;
    }

    .account_panel .company-logo {
        margin-top:20px;
    }

    .account_panel .company-logo > img {
        width: auto;
        height: 92px;
    }

    .account_panel #password-validation > input {
        width: 100%;
    }

    .has-error {
        border: 2px solid red !important
    }

.g-recaptcha > div{
    width:100% !important;
    height:78px;
}

::-webkit-input-placeholder {
    text-transform: unset !important;
}