/* Cubic Bezier Transition */
/***
Login page
***/
/* logo page */
.font-black-new {
    color: #383838;
}
.bg-black-new {
    background-color: #383838;
}
.grey-input {
    background-color: #f2f2f2 !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 17px !important;
    height: 53px !important;
    padding-left: 20px;
}
.btn-black-new {
    background-color: #383838;
    color: white;
    height: 53px;
    font-size: 20px !important;
    border-radius: 20px !important;
}
.btn-bordered-black-new {
    background-color: white;
    color: #383838;
    height: 53px;
    font-size: 20px !important;
    border-radius: 20px !important;
    border-color: #383838;
}
.login {
  background-color: #666 !important; }

.login .logo {
  margin: 40px 0px;
  padding: 15px;
  text-align: center; }

.login .content {
    background-color: rgba(255,255,255,0.75) !important;
  width: 450px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 0px;
  padding: 30px;
  padding-top: 20px;
  padding-bottom: 25px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px !important; }

.login .content h3 {
  color: #eee; }

.login .content h4 {
  color: #eee; }

.login .content p,
.login .content label {
  color: #fff; }

.login .mt-checkbox > span:after {
  border-color: #eee; }

.login .content .login-form,
.login .content .forget-form {
  padding: 0px;
  margin: 0px; }

.login .content .form-control {
  background-color: #fff; }

.login .content .forget-form {
  display: none; }

.login .content .register-form {
  display: none; }

.login .content .form-title {
  font-weight: 300;
  margin-bottom: 25px; }

.login .content .form-actions {
  background-color: transparent;
  clear: both;
  border: 0px;
  padding: 0px 30px 25px 30px;
  margin-left: -30px;
  margin-right: -30px; 
  height: 53px;
}

.login .content .forget-form .form-actions {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 20px; }

.login .content .register-form .form-actions {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0px; }

.login .content .form-actions .rememberme {
  margin-top: 8px;
  display: inline-block; }

.login .content .form-actions .btn {
  margin-top: 1px; }

.login .content .forget-password {
  margin-top: 25px; }

.login .content .create-account {
  border-top: 1px dotted #eee;
  padding-top: 10px;
  margin-top: 15px; }

.login .content .create-account a {
  display: inline-block;
  margin-top: 5px; }

/* select2 dropdowns */
.login .content .select2-container i {
  display: inline-block;
  position: relative;
  color: #ccc;
  z-index: 1;
  top: 1px;
  margin: 4px 4px 0px -1px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center; }

.login .content .has-error .select2-container i {
  color: #b94a48; }

.login .content .select2-container a span {
  font-size: 13px; }

.login .content .select2-container a span img {
  margin-left: 4px; }

/* footer copyright */
.login .copyright {
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  color: #eee;
  font-size: 13px; }

.separator {
    margin: 0 10px; /* Adds space around the separator */
    font-size: 13px;
    color: #383838; /* Change to your desired color */
  }

.form-group p {
      font-size: 16px; /* Adjust text size as needed */
      color: #333; /* Match the overall theme */
      line-height: 1.5; /* Adds some space between lines if needed */
  }

.input-icon-right {
  position: relative;
  width: 100%;
}

.input-icon-right input {
  padding-right: 35px; /* Add space for the icon */
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px; /* Adjust for spacing */
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 16px; /* Adjust icon size */
}

.toggle-password:hover {
  color: #000;
}

@media (max-width: 480px) {
  /***
  Login page
  ***/
  .login .logo {
    margin-top: 10px; }
  .login .content {
    padding: 30px;
    width: 80%; }
  .login .content h3 {
    font-size: 22px; }
  .login .checkbox {
    font-size: 13px; } }

.skype {
    background: transparent;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    border-radius: 150px !important;
    border: solid 0px #fff;
    animation: play 1.5s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.skype:hover {
    animation: none;
    transform: scale(1.2);
    transition: 0.5s;
}

@keyframes play {
    0% {
        transform: scale(1);
    }
    15% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
    }
    25% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    }
    30% {
        transform: scale(1.2);
    }
    45% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
    }
    55% {
        transform: scale(1);
    }
}
