/* Start Custom Modal CSS */
.modal-dialog .form-control {
    font-size: 14px !Important;
}

.modal-dialog i,
.modal-dialog span {
    color: #3f6f9f !important;
    font-size: 14px !important;
    line-height: 0px !important;
}

#loginModal .modal-dialog {
    width: 400px;
    margin: 70px auto 0;
}

#loginModal .modal-dialog {
    transform: scale(0.5);
}

#loginModal .modal-dialog {
    transform: scale(1);
}

#loginModal .modal-dialog .modal-content {
    text-align: center;
    border: none;
}

#loginModal .modal-content .close {
    background: #00a9da;
    text-shadow: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 1;
    position: absolute;
    left: auto;
    right: 8px;
    top: 8px;
    z-index: 1;
    transition: all 0.3s;
}

#loginModal .modal-content .close:hover {
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#loginModal .close:focus {
    outline: none;
}

#loginModal .modal-body {
    padding: 40px !important;
}

#loginModal .modal-body .title {
    color: #00a9da;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

#loginModal .modal-body .description {
    color: #9A9EA9;
    font-size: 16px;
    margin: 0 0 20px;
}

#loginModal .modal-body .form-group {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

#loginModal .modal-body .input-icon {
    color: #777;
    font-size: 18px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 20px;
}

#loginModal .modal-body .form-control {
    font-size: 17px;
    height: 45px;
    width: 100%;
    padding: 6px 0 6px 50px;
    margin: 0 auto;
    border: 2px solid #eee;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

#loginModal .form-control::placeholder {
    color: #AEAFB1;
}

#loginModal .form-group.checkbox {
    width: 130px;
    margin-top: 0;
    display: inline-block;
}

#loginModal .form-group.checkbox label {
    color: #9A9EA9;
    font-weight: normal;
    font-size: 14px;
}

#loginModal .form-group.checkbox input[type=checkbox] {
    margin-left: 0;
}

#loginModal .modal-body .forgot-pass {
    color: #7F7FD5;
    font-size: 13px;
    text-align: right;
    width: calc(100% - 135px);
    margin: 2px 0;
    display: inline-block;
    vertical-align: top;
    transition: all 0.3s ease 0s;
}

#loginModal .forgot-pass:hover {
    color: #9A9EA9;
    text-decoration: underline;
}

#loginModal .modal-content .modal-body .btn {
    color: #fff;
    background: #00a9da;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 38px;
    width: 100%;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 5px;
    border: none;
    display: inline-block;
    transition: all 0.6s ease 0s;
}

#loginModal .modal-content .modal-body .btn:hover {
    color: #fff;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#loginModal .modal-content .modal-body .btn:focus {
    outline: none;
}

@media only screen and (max-width: 480px) {
    #loginModal .modal-dialog {
        width: 95% !important;
    }

    #loginModal .modal-content .modal-body {
        padding: 60px 20px 40px !important;
    }
}
/* End Custom Modal CSS */

/* Start Custom Style Social Icons CSS */
.social-login-menu ul {
    display: flex;
    justify-content: center;
}

.social-login-menu ul li {
    text-align: -webkit-center;
    font-size: 15px;
    list-style: none;
    margin: 0 15px;
}

.social-login-menu ul li .fab {
    font-size: 30px !important;
    line-height: 60px ! important;
    transition: .3s !important;
    color: #fff !important;
}

.social-login-menu ul li a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}

.social-login-menu ul li a:hover {
    transform: translate(0, -10%);
}

/* Background colors for each social media */
.social-login-menu ul li:nth-child(1) a {
    background-color: #1877F2;
    /* Facebook Blue */
}

.social-login-menu ul li:nth-child(2) a {
    background-color: #DB4437;
    /* Google Red */
}

.social-login-menu ul li:nth-child(3) a {
    background-color: #1DA1F2;
    /* Twitter Blue */
}

/* Hover effect */
.social-login-menu ul li:nth-child(1) a:hover {
    background-color: #145db2;
    /* Darker Facebook Blue */
}

.social-login-menu ul li:nth-child(2) a:hover {
    background-color: #c1351d;
    /* Darker Google Red */
}

.social-login-menu ul li:nth-child(3) a:hover {
    background-color: #0d95e8;
    /* Darker Twitter Blue */
}
/* End Custom Style Social Icons CSS */