﻿.body-container {
  margin-top: 60px;
  padding-bottom: 40px; }

.welcome-page li {
  list-style: none;
  padding: 4px; }

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0; }

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray; }
  .grants-page .card .card-title {
    font-size: 120%;
    font-weight: bold; }
    .grants-page .card .card-title img {
      width: 100px;
      height: 100px; }
  .grants-page .card label {
    font-weight: bold; }

/* login */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 1440px;
  height: 1024px;
  margin: 0 auto;
  position: relative;
}

.font-smile,
.font-smile input,
.font-smile button,
.font-smile a,
.font-smile span,
.font-smile div {
  font-family: 'Smile', sans-serif;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 588px;
}

.login-container {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}

.login-image,
.login-form {
  flex: 1;
  /*width: 612px;*/
}

.login-image {
  position: relative;
  overflow: hidden;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ef-kids-logo {
  text-align: center;
  margin-bottom: 50px;
}

.ef-kids-logo img {
  width: 50px;
  height: 50px;
}

.login-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding-left: 40px;
  border: 2px solid #8C8C8C;
  border-radius: 5px;
  font-size: 16px;
}

/*input icon*/
.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.input-icon img {
  max-width: 100%;
  max-height: 100%;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
  margin-bottom: 0;
}

.form-check-input {
  margin-right: 5px;
  margin-top: 0;
  vertical-align: middle;
}


.forgot-password {
  color: #8C8C8C;
  text-decoration: none;
}

.btn-primary {
  width: 372px;
  background-color: #ff3366;
  border: none;
  padding: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e62e5c;
  box-shadow: 0 2px 2px 0 rgba(235,51,107,0.3), 0 2px 4px 0 rgba(0,0,0,0.19);
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #ff3366;
  box-shadow: none;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #e62e5c;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #e62e5c;
  border-color: #005cbf;
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled):active.focus {
  box-shadow: none;
}

/* Footer styles */
footer {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 10px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content span {
  font-size: 14px;
  color: #666;
}

.footer-content nav {
  display: flex;
}

.footer-content nav a {
  color: #666;
  text-decoration: none;
  margin-left: 40px;
  font-size: 14px;
}

.footer-content nav a:hover {
  text-decoration: underline;
}