﻿.register-form .text-danger {
    color: #FFD81F;
}

.login {
    color: #FF006E;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

    /* unvisited link */
    .login:link {
        color: #FF006E;
    }

    /* visited link */
    .login:visited {
        color: #FF006E;
    }

    /* mouse over link */
    .login:hover {
        color: #FF006E;
    }

    /* selected link */
    .login:active {
        color: #5BB7B7;
        text-decoration: none;
    }

.terms {
    color: #5BB7B7;
    font-size: 14px;
    font-weight: bold;
}

.register-html .tab,
.register-form .form-group .label,
.register-form .form-group .button {
    text-transform: uppercase;
}

.register-form {
    text-align: center;
    min-height: 345px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

    .register-form .form-group {
        margin-bottom: 15px;
    }

        .register-form .form-group .label,
        .register-form .form-group .input,
        .register-form .form-group .button {
            width: 100%;
            color: #fff;
            display: block;
        }

        .register-form .form-group .input,
        .register-form .form-group .button {
            border: none;
            text-align: center;
            padding: 25px 20px;
            border-radius: 10px;
            background: rgba(255,255,255,.6);
        }

        .register-form .form-group .button {
            background: rgba(255,255,255,.1);
            height: 50px;
        }

        .register-form .form-group .button {
            font-weight: bold;
        }

        .register-form .form-group .input {
            font-size: 18px;
        }

        .register-form .form-group input[data-type="password"] {
            text-security: circle;
            -webkit-text-security: circle;
        }

        .register-form .form-group input:focus {
            background-color: #FFFFFF;
            color: #000000;
        }

        .register-form .form-group .label {
            color: #f2f2f2;
            text-align: start;
            font-size: 12px;
        }

        .register-form .form-group .button {
            background: rgba(255,0,110,.8);
            height: 50px;
            padding: 14px;
        }

        /* FORGOT PASSWORD*/
        .register-form .form-group .checkbox {
            display: inline-block;
            float: left;
            Margin-top: 0px;
            padding-top: 0px;
            Margin-bottom: 20px;
        }

        .register-form .form-group .checkbox-text {
            color: white;
        }

        .register-form .form-group .link-text {
            color: white;
        }

        /* Styling Checkbox Starts */
        .register-form .form-group .checkbox .checkbox-label {
            display: block;
            cursor: pointer;
            font-size: 14px;
            text-indent: 20px;
            line-height: 18px;
            height: 18px;
            clear: both;
        }

            .register-form .form-group .checkbox .checkbox-label input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
            }

            .register-form .form-group .checkbox .checkbox-label .checkbox-custom {
                position: absolute;
                top: 0px;
                left: 0px;
                height: 18px;
                width: 18px;
                color: #FFFFFF;
                background-color: transparent;
                border-radius: 5px;
                transition: all 0.3s ease-out;
                -webkit-transition: all 0.3s ease-out;
                -moz-transition: all 0.3s ease-out;
                -o-transition: all 0.3s ease-out;
                border: 1px solid #FFFFFF;
            }

            .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom {
                background-color: #FFFFFF;
                border-radius: 5px;
                -webkit-transform: rotate(0deg) scale(1);
                -ms-transform: rotate(0deg) scale(1);
                transform: rotate(0deg) scale(1);
                opacity: 1;
                border: 1px solid #FFFFFF;
            }

            .register-form .form-group .checkbox .checkbox-label .checkbox-custom::after {
                position: absolute;
                content: "";
                left: 12px;
                top: 12px;
                height: 0px;
                width: 0px;
                border-radius: 5px;
                border: solid #009BFF;
                border-width: 0 3px 3px 0;
                -webkit-transform: rotate(0deg) scale(0);
                -ms-transform: rotate(0deg) scale(0);
                transform: rotate(0deg) scale(0);
                opacity: 1;
                transition: all 0.3s ease-out;
                -webkit-transition: all 0.3s ease-out;
                -moz-transition: all 0.3s ease-out;
                -o-transition: all 0.3s ease-out;
            }

            /* Check cross */
            .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom::after {
                -webkit-transform: rotate(45deg) scale(1);
                -ms-transform: rotate(45deg) scale(1);
                transform: rotate(45deg) scale(1);
                opacity: 1;
                left: 5px;
                top: 1px;
                width: 6px;
                height: 12px;
                border: solid #009BFF;
                border-width: 0 2px 2px 0;
                background-color: transparent;
                border-radius: 0;
            }

            /* For Ripple Effect */
            .register-form .form-group .checkbox .checkbox-label .checkbox-custom::before {
                position: absolute;
                content: "";
                left: 10px;
                top: 10px;
                width: 0px;
                height: 0px;
                border-radius: 5px;
                border: 1px solid #FFFFFF;
                -webkit-transform: scale(0);
                -ms-transform: scale(0);
                transform: scale(0);
            }

            .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom::before {
                left: -3px;
                top: -3px;
                width: 15px;
                height: 15px;
                border-radius: 5px;
                -webkit-transform: scale(3);
                -ms-transform: scale(3);
                transform: scale(3);
                opacity: 0;
                z-index: 999;
                transition: all 0.3s ease-out;
                -webkit-transition: all 0.3s ease-out;
                -moz-transition: all 0.3s ease-out;
                -o-transition: all 0.3s ease-out;
            }

            /* Style for Circular Checkbox */
            .register-form .form-group .checkbox .checkbox-label .checkbox-custom.circular {
                border-radius: 50%;
                border: 1px solid #FFFFFF;
            }

            .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom.circular {
                background-color: #FFFFFF;
                border-radius: 50%;
                border: 1px solid #FFFFFF;
            }
                /* Check cross */
                .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom.circular::after {
                    border: solid #FF66A8;
                    border-width: 0 2px 2px 0;
                }

            .register-form .form-group .checkbox .checkbox-label .checkbox-custom.circular::after {
                border-radius: 50%;
            }

            .register-form .form-group .checkbox .checkbox-label .checkbox-custom.circular::before {
                border-radius: 50%;
                border: 1px solid #FFFFFF;
            }

            .register-form .form-group .checkbox .checkbox-label input:checked ~ .checkbox-custom.circular::before {
                border-radius: 50%;
            }

.register-html h4 {
    color: white;
    text-decoration: none;
    padding-bottom: 20px;
}
