/* CSS Document */
.middle-box {
    height: 100%;
    width: 500px;
}

.loginscreen.middle-box {
    width: 500px;
    margin-left: -200px;
}

/* #Start Flex alignments css */
.flex_display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_auto {
    -webkit-flex: 1;
    -moz-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex_half {
    -webkit-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
    -moz-box-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.row_reverse {
    flex-direction: row-reverse;
}

.flex_align_vertical {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_align_center {
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.flex_space_between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.flex_end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}
/* #End Flex alignments css */

/* #Start AIPSCB tournament organizer login form custom css */
.location_area {
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.location_block {
    max-width: 400px;
    box-shadow: 1px 2px 20px 7px rgba(4, 6, 4, 0.04);
    width: 100%;
    padding: 30px 15px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-right: 15px;
    display: inline-block;
    background: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #212529;
    font-weight: 600;
    transition: 0.3s all ease;
}

.location_block:last-child {
    margin-right: 0;
}

.location_block:hover {
    color: #d49c49;
}

.login_logo {
    text-align: center;
    padding: 50px 0;
}

.member_login_frm {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.member_login_frm form {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.member_login_frm .input_h_b {
    padding: 20px 15px;
    border-radius: 4px;
}

.member_login_frm .btn-primary {
    padding: 10px 12px;
}

@media all and (max-width: 991px) {
    .location_block {
        margin-right: 0;
    }
}

@media all and (max-width: 399px) {
    .location_block {
        font-size: 15px;
    }
}
/* #End AIPSCB tournament organizer login form custom css */