/*--------------------------------------------------
    [TRANSITION]
----------------------------------------------------*/
/* Cubic Bezier Transition */
/***
Login page
***/
/* bg color */

html {

  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;


  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background: #34ADE0;
  background: -webkit-radial-gradient(circle at bottom right, #1CB5E0, #000046);
  background: radial-gradient(circle at bottom right, #1CB5E0, #000046);
}

.content {
  background-color: #fff;
  background-image: url(/assets/img/bg/login-bg.png);
  background-repeat: repeat-y;


  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    0px 0px 15px rgba(0, 0, 0, 0.8);  /* Firefox 3.5 - 3.6 */
  box-shadow:         0px 0px 15px rgba(0, 0, 0, 0.8);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */

}

.form-title-wb {
  display: flex;
  justify-content: center;
}
.logo {
  width: 375px;
  display: flex;
  justify-content: center;
  padding: 50px 0px;
}

.user_login_pic {
  padding: 10px;
  display: flex;
  justify-content: center;
}
.user_login_name {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: x-large;
  margin-bottom: 15px;
}
.login-form {

  padding: 0px;
  margin: 15px 30px 15px 20px;

}

.alert {
  max-width: 280px;
}


.form-group.form-md-line-input.form-md-floating-label .form-control[readonly] ~ label, .form-group.form-md-line-input.form-md-floating-label .form-control.edited ~ label, .form-group.form-md-line-input.form-md-floating-label .form-control.form-control-static ~ label, .form-group.form-md-line-input.form-md-floating-label .form-control:focus:not([readonly]) ~ label, .form-group.form-md-line-input.form-md-floating-label .form-control.focus:not([readonly]) ~ label {
  color: #34ADE0 ;

}


input:valid { outline: solid blue 2px; }

input {
  min-width: 280px;
}

.alert {
  border-radius: 5px !important;
}

.md-click-circle {
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: scale(0);
  -moz-transform: scale(0);
  transform: scale(0); }

.md-click-circle.md-click-animate {
  -webkit-animation: mdClickEffect 0.65s linear;
  -moz-animation: mdClickEffect 0.65s linear;
  animation: mdClickEffect 0.65s linear; }


@-webkit-keyframes mdClickEffect {
  0% {
    opacity: 1;
    -webkit-transform: scale(0); }
  100% {
    opacity: 0 !important;
    -webkit-transform: scale(2.5); } }

@-moz-keyframes mdClickEffect {
  0% {
    opacity: 1;
    -webkit-transform: scale(0); }
  100% {
    opacity: 0 !important;
    -moz-transform: scale(2.5); } }

@keyframes mdClickEffect {
  0% {
    opacity: 1;
    -webkit-transform: scale(0); }
  100% {
    opacity: 0 !important;
    transform: scale(2.5); } }

#togglePassword{
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: rgb(255, 255, 255) !important;
  background-image: none !important;
  color: rgb(0, 0, 0) !important;
}

/* OAuth Login Styles */
.oauth-login-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.oauth-divider {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.oauth-divider span {
  background: #fff;
  padding: 0 15px;
  color: #999;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}



.oauth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oauth-button {
  flex: 1;
  min-width: 48%;
  padding: 12px 15px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: white !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.oauth-button:hover {
  color: white !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.oauth-button:focus,
.oauth-button:active {
  color: white !important;
  text-decoration: none;
}

.oauth-button i {
  margin-right: 8px;
  font-size: 16px;
}

/* Provider-specific colors */
.oauth-google {
  background-color: #4285f4 !important;
}

.oauth-google:hover {
  background-color: #3367d6 !important;
}

.oauth-github {
  background-color: #333 !important;
}

.oauth-github:hover {
  background-color: #24292e !important;
}

.oauth-microsoft {
  background-color: #0078d4 !important;
}

.oauth-microsoft:hover {
  background-color: #106ebe !important;
}

.oauth-apple {
  background-color: #000 !important;
}

.oauth-apple:hover {
  background-color: #333 !important;
}

.oauth-linkedin {
  background-color: #0077b5 !important;
}

.oauth-linkedin:hover {
  background-color: #005885 !important;
}

.oauth-slack {
  background-color: #4a154b !important;
}

.oauth-slack:hover {
  background-color: #350d36 !important;
}

.oauth-discord {
  background-color: #5865f2 !important;
}

.oauth-discord:hover {
  background-color: #4752c4 !important;
}

/* Responsive design */
@media (max-width: 480px) {
  .oauth-button {
    min-width: 100%;
    margin-bottom: 10px;
  }
}