.floating-label .form-control:focus {
    border-color: var(--lokuswp-accent-color);
    background-color: #FFF
}

.floating-label .form-control::-webkit-input-placeholder {
    color: transparent !important
}

.floating-label .form-control::-moz-placeholder {
    color: transparent !important
}

.floating-label .form-control::-ms-placeholder {
    color: transparent !important
}

.floating-label .form-control::placeholder {
    color: transparent !important
}

.floating-label .form-control:focus,
.floating-label .form-control:not(:placeholder-shown) {
    background-color: #FFF
}

.floating-label .form-control:focus ~ label,
.floating-label .form-control:not(:placeholder-shown) ~ label {
    color: var(--lokuswp-accent-color);
    top: -3px;
    background-color: #FFF;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    z-index: 999;
    font-size: 14px;
}

.floating-label label {
    position: absolute;
    color: #d7d7d7;
    margin: 0;
    padding: 2px 5px;
    top: 40%;
    left: 15px;
    transform: translateY(-30%) !important;
    transition: all 0.3s ease-in-out;
    cursor: text
}

.send-otp {
    position: absolute;
    top: 10px;
    right: 5px;
    color: #e68;
    cursor: pointer;
}

.send-otp:active {
    color: #d03;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}