/* GLOBAL STYLES */
input[type=submit], button[type=button], button[type=submit] {
	min-width: 12em;
	margin: 5px 0;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
}
input[type=submit].btn-link, button[type=button].btn-link, button[type=submit].btn-link {
	width: auto;
}

/* stack buttons when less than desktop md-min scren width */ 
@media (max-width: 991px) {
 .form-buttons input[type="submit"], .form-buttons button[type=button], .form-buttons button[type=submit], .form-buttons a {
  display: block;
  width: 67%;
 }
}

/* HEADER STYLES */
#wb-bnr {
	padding-top: 10px;
	padding-bottom: 10px;
}
#wb-lng ul {
	margin-bottom: 10px;
}
#wb-lng a {
	color: #333;
	text-decoration: underline;
}
#gcwu-sig {
 width: 100%;
 max-width: 300px;
}
#wmms {
 max-width: 120px;
}

/* NAVIGATION BARS */
.top-nav-bar {
	background-color: #335075;
	color: #fff;
	padding: 5px 0;
	border-bottom: 3px solid #e1e4e7;
}
.top-nav-bar ul {
	margin: 0;
	padding: 0;
}
.top-nav-bar li {
	margin-right: 20px;
}
.top-nav-bar a {
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}
.top-nav-bar a:hover {
	text-decoration: none;
}

.breadcrumb-bar {
	background-color: #f3f4f5;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}
.breadcrumb-bar p {
	margin: 0;
	color: #333;
}

/* MAIN CONTENT STYLES */
main {
	margin-top: 20px;
}
main h1.gckey-header {
	line-height: 1.15;
	margin-top: 0;
	padding-bottom: 15px;
	border-bottom: 4px solid #D30C1C; /* Canada Red */
	font-weight: 500;
	font-size: 32px;
}
main label {
 font-weight: bold;
 color: #333;
}
main .form-group .form-control {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
}

/* BUTTONS */
.btn-primary {
	background-color: #335075 !important;
	color: #fff !important;
	border: none !important;
}
.btn-primary:hover {
	background-color: #283e5a !important;
}
.btn-default.cancel {
	background-color: #f3f4f5 !important;
	border: 1px solid #bbbbbb !important;
	color: #333 !important;
}
.btn-default.cancel:hover {
	background-color: #e2e3e4 !important;
}

/* HELP LINKS */
.help-links {
	margin-top: 20px;
}
.dot-separator {
	margin: 0 10px;
	color: #333;
}

/* PANEL STYLES */
main .login-panel {
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: none;
}
main .login-panel .panel-body {
	padding: 30px;
}
@media (min-width: 992px) {
  main .login-panel #left-box {
    border-right: 1px solid #DDDDDD;
  }
}

/* SIMPLE ACCESS LIST */
.simple-access-list {
	padding-left: 0;
	list-style: none;
	margin-bottom: 20px;
}
.simple-access-list li {
	margin-bottom: 5px;
}

/* EXIT BUTTON */
.btn-exit {
	background-color: #f3f4f5 !important;
	border: 1px solid #bbbbbb !important;
	min-width: 8em;
}

/* FOOTER STYLES */
#wb-info {
	background-color: #f3f4f5;
	margin-top: 40px;
	padding-top: 20px;
}
#wb-info .brand {
	background-color: #fff;
	padding: 15px 0;
	border-top: 1px solid #ddd;
}
#wb-info .brand object {
 max-width: 150px;
}

/* MULTI-STEP FORM STYLES */
.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SPLASH SCREEN */
#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-content {
    text-align: center;
}
.spinner {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(51, 80, 117, 0.1);
    border-top: 4px solid #335075;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SUBMIT LOADER */
#submit-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* NOTIFICATION POPUP */
#notification-popup {
    position: fixed;
    bottom: 20px;
    right: -100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10000;
    display: flex;
    align-items: center;
    transition: right 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#notification-popup .notif-icon {
    font-size: 24px;
    color: #335075;
    margin-right: 15px;
}
#notification-popup .notif-text {
    font-size: 14px;
    color: #333;
}
#notification-popup #notif-name {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

/* INTL-TEL-INPUT CUSTOMIZATION */
.iti { width: 100%; }
.iti__country-list { z-index: 10001; }
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag { background-color: rgba(0, 0, 0, 0.05); }

/* SUCCESS MODAL ICON */
.success-icon {
    margin-bottom: 25px;
}