body {
    font-family: 'Calibre-Regular', sans-serif;
}

.tagline {
    display: none;
}

.service-hero {
  min-height: 30vh;
  margin-top: 40px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero .hero-content h1 {
    color: var(--white) !important;
    margin-bottom: 24px;
    font-size: 3.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.wrapper{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.wrapper .card {
    background: rgba(255, 255, 255, 0.3);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wrapper .card form {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.wrapper h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group {
    position: relative;
    margin: 20px auto;
}

.form-group label{
    display: inline-block;
    margin-bottom: .5rem;
    color: black;
    width: 100%;
    text-align: left;
}

.input-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffffcf;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 10px;
    font-weight: 600;
    color: #060606;
    margin-top: -10px;
    margin-bottom: 15px;
}

.form-group label.form-check-label {
	margin-bottom: 0px;
}

.btn {
    padding: 10px 20px;
    width: 100%;
    background-color: #dfeaf7;
    border: none;
    font-weight: 600;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}

.login-error {
    background: rgba(220, 53, 69, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-group.checkbox {
    display: flex;
}

.form-check-input {
    position: unset;
    display: unset;
    padding-left: unset !important;
    margin-left: 0px !important;
    margin-top: 0 !important;
}

input.form-control {
    width: 100% !important;
    padding: 12px 20px !important;
    border: 2px solid #e8edf2 !important;
    border-radius: 12px !important;
    font-size: 1.3rem !important;
    font-family: inherit !important;
    background-color: #fafbfc !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    height: auto;
    line-height: inherit;
}

form button[type="submit"]{
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    min-width: 120px;
    background: linear-gradient(145deg, #1e5582 0%, #164461 100%) !important;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 107, 162, 0.3) !important;
}

form button[type="submit"]:hover {
    background: linear-gradient(145deg, #1e5582 0%, #164461 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 107, 162, 0.4) !important;
    filter: none !important;
}

form .required::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

.page-content .alert-danger a {
    display: none;
}

div.main-user-class {
    background-color: white;
    margin: 10px auto;
    width: 100%;
    max-width: 1200px;
}

.form-group.form-group-checkbox{
    display: flex;
    align-items: center;
}

.main-user-class .form-group-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.form-group-checkbox label a {
    color: #194a6d;
}

.form-group-checkbox label a:hover{
	text-decoration: underline;
}

#termsModal .modal-header .close{
  top: 0px;
  font-size: 40px;
}

#termsModal .modal-header {
    align-items: center;
}

#termsModal .modal-body h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

#termsModal .modal-body p, #termsModal .modal-body li {
    font-size: 18px; 
}

#termsModal .modal-body h2.western {
    font-size: 35px;
}

#termsModal .modal-dialog.modal-lg {
    max-width: 1200px !important;
	overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
}

#termsModal.modal-open .modal{
    overflow-y: hidden;
}

div#termsModal {
    z-index: 9;
}

#termsModal .modal-content {
    max-width: 1150px;
}

#termsModal .modal-header h2#termsModalLabel {
    font-size: 30px;
}

@media(max-width:767px){
	.service-hero .hero-content h1{
		font-size: 40px;
	}
	#termsModal.modal{
    	padding: 48px 20px 20px 20px;
    }
	
	.service-hero{
		margin-top: 10px;
	}
}