﻿/*
 *  Document   : extra_pages.css
 *  Description: Student login page styles - lightweight restyled version
 */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

a {
  font-size: 14px;
  line-height: 1.7;
  color: #1a6fb5;
  margin: 0px;
  transition: color 0.3s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #0d4a80;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}

input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-moz-placeholder           { color: transparent; }
input:focus::-moz-placeholder          { color: transparent; }
input:focus:-ms-input-placeholder      { color: transparent; }

input::-webkit-input-placeholder { color: #7aabcc; }
input:-moz-placeholder           { color: #7aabcc; }
input::-moz-placeholder          { color: #7aabcc; }
input:-ms-input-placeholder      { color: #7aabcc; }

label {
  margin: 0;
  display: block;
}

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/* Utility */
.txt1 {
  font-size: 13px;
  color: #4a7a9b;
  line-height: 1.5;
}

/* Layout */
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
  z-index: 1;
}

/* Soft light-blue animated background */
.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #dbeeff 0%, #b3d4f5 40%, #c8e6ff 70%, #e8f4fd 100%);
  background-size: 300% 300%;
  animation: bgShift 14s ease infinite;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* White card */
.wrap-login100 {
  width: 440px;
  border-radius: 16px;
  padding: 40px 45px 36px 45px;
  background: #ffffff;
  border: 1px solid #d0e6f5;
  box-shadow: 0 8px 30px rgba(100, 160, 210, 0.25);
}

/* Form */
.login100-form {
  width: 100%;
}

.login100-form-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
}

.login100-form-logo img {
  width: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px;
  box-shadow: 0 0 0 4px rgba(26, 111, 181, 0.15), 0 6px 20px rgba(0, 0, 0, 0.12);
}

.login-logo img {
  width: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.login100-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a4f82;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

/* Input */
.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #b0cfe8;
  margin-bottom: 28px;
}

.input100 {
  font-size: 15px;
  color: #1a3a5c;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 44px;
  background: transparent;
  padding: 0 5px 0 36px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #1a6fb5;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 20px;
  color: #7aabcc;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 8px;
  left: 0px;
  padding-left: 5px;
  transition: all 0.3s ease;
}

.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -20px;
  font-size: 16px;
  color: #1a6fb5;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -20px;
  font-size: 16px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}

/* Checkbox */
.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 28px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-size: 13px;
  color: #3a6080;
  line-height: 1.2;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #eaf4fb;
  border: 1px solid #7aabcc;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #fff;
  background: #1a6fb5;
}

/* Button */
.container-login100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  min-width: 160px;
  height: 46px;
  border-radius: 8px;
  background: #1a6fb5;
  box-shadow: 0 4px 14px rgba(26, 111, 181, 0.4);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.login100-form-btn:hover {
  background: #2e86c1;
  box-shadow: 0 6px 18px rgba(26, 111, 181, 0.55);
  transform: translateY(-1px);
  color: #fff;
}

.login100-form-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 111, 181, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
  .wrap-login100 {
    padding: 36px 20px 30px 20px;
    width: 100%;
  }
  .login100-form-title {
    font-size: 17px;
  }
}

/* Validation */
.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c0392b;
  border-radius: 4px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #e74c3c;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* Utility spacing */
.p-b-34 { padding-bottom: 34px; }
.p-t-27 { padding-top: 27px; }
.p-b-20 { padding-bottom: 20px; }
.p-t-90 { padding-top: 90px; }
.p-t-50 { padding-top: 50px; }
.p-t-30 { padding-top: 30px; }

.txt-locked {
  color: #3a6080;
  font-size: 17px;
  padding: 10px 0px;
}

.txt-small-heading {
  color: #3a6080;
  font-size: 17px;
  padding: 15px 0px;
}
