@import url('https://fonts.googleapis.com/css?family=Numans');

#userImage {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

#imagePicker {
    display: none;
}

.customFormExit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(0px);
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.customFormExit.show{
    animation: fadeIn 0.5s ease-out forwards;
}

.customFormExit.exit {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(0px);
    }
}

.customFormExit .custom-container {
    height: auto;
    padding: 0;
    border: 1px solid rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-radius: 10px;
    padding: 20px;
}

.customFormExit .custom-container .card {
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    background-color: transparent;
    border: none;
}

.social_icon span {
    font-size: 60px;
    margin-left: 10px;
    color: #FFC312;
}

.social_icon span:hover {
    color: white;
    cursor: pointer;
}

.card-header h3 {
    color: white;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.input-group-prepend span {
    width: 50px;
    background-color: #FFC312;
    color: black;
    border: 0 !important;
}

input:focus {
    outline: 0 0 0 0 !important;
    box-shadow: 0 0 0 0 !important;

}

.remember {
    color: white;
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.login_btn {
    color: black;
    background-color: #FFC312;
    width: 150px;
    font-weight: 500;
}

.login_btn:hover {
    color: black;
    background-color: white;
}

.links {
    color: white;
}

.links a {
    margin-left: 4px;
}

.edtText {
    margin-bottom: 7px;
}

.edtText .myspan{
    min-height: 1.1em;
}

.edtText .form-group {
    margin-bottom: 5px;
}