.form-simple input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.form-simple input[type="mail"] {
  margin-bottom: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.form-simple input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.help-block ul {
  margin: 0  !important;
  padding: 0 !important; }
  .help-block ul li {
    list-style: none; }

.login-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
    position: relative;
}

.language-dropdown {
    position: relative;
    text-align: -webkit-right;
}

.language-btn {
    width: 60px;
    height: 38px;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    transition: .25s;
    font-size: 14px;
    font-weight: 600;
}

    .language-btn:hover {
        border-color: #f7941d;
        box-shadow: 0 1px 1px rgba(0,0,0,.08);
    }

    .language-btn i:first-child {
        color: #1d7ef7;
    }

.arrow {
    font-size: 11px;
    transition: .25s;
}

.language-btn.open .arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    right: 0;
    top: 38px;
    width: 105px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
    overflow: hidden;
    display: none;
    z-index: 1000;
}

    .language-menu.show {
        display: block;
    }

    .language-menu a {
        display: flex;
        align-items: center;        
        padding: 7px 15px;
        color: #333;
        text-decoration: none;
        transition: .2s;
        font-size: 14px;
    }

        .language-menu a span {
            margin-right: 0px;
        }

        .language-menu a:hover {
            background: #f8f8f8;
        }

        .language-menu a.active {
            color: #1d7ef7;
            font-weight: 600;
        }

    .language-menu .fa-check {
        color: #f7941d;
        margin-left: auto;
    }
