﻿body{
    background:transparent;

}

 .small-login-page-one {
    position: relative;
    padding: 25px 16px;
    background: #88153ab3;
    border-radius: 20px;
    max-width: 100%;
    box-shadow: 9px 9px 1px #f570a0;
}
    .small-login-page-one-form .form-group {
    margin-bottom: 15px;
}
    .small-login-page-one-form label {
  color: #fff;
    font-weight: bold;
    font-size: 16px;
}
    .small-login-page-one-form .form-group input {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    height: 45px;
    color: #fff;
    background-color: #bf4e7100;
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 10px;
    outline: none;
    box-shadow: none;
}
    .btn-default-page{
	outline: none;
    box-shadow: none;
    padding: 11px 0;
    font-size: 16px;
    border-radius: 16px;
    font-weight: 600;
    border: 0;
    background-color: #f5709d;
    color: #fff;
}
    .w-100 {
    width: 100% !important;
}

    ::placeholder{
        color:#fff !important   
    }

 .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;  /* higher z-index for safety */
    background: #f3f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

 img{
     max-width:100%;
 }

.loading-container-fluid {
    text-align: center;
}

.loading-container,
.loading {
    height: 100px;
    width: 100px;
    position: relative;
    border-radius: 50%;
}

.loading-container {
    margin: 0 auto;
}

.loading {
    border: 4px solid transparent;
    border-color: transparent #c81854 transparent #c81854;
    animation: rotate-loading 1.5s linear infinite;
    transform-origin: 50% 50%;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-message {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    color: #c81854;
}

