/* =====================================================
   CLIENT PORTAL
===================================================== */

.sfw-portal {
  width: 100%;
  background: #087514;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0,0,0,.35);
}

.sfw-portal-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfw-portal-title {
  min-width: 360px;
  height: 72px;
  background: #087514;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 34px;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.sfw-portal-login {
  height: 72px;
  min-width: 120px;
  background: #050505;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  text-decoration: none !important;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  transition: .25s ease;
}

.sfw-portal-login:hover {
  background: #04fc3a;
  color: #000000;
}

@media (max-width: 768px) {
  .sfw-portal-title {
    min-width: auto;
    width: 70%;
    height: 62px;
    font-size: 24px;
    padding: 0 20px;
  }

  .sfw-portal-login {
    height: 62px;
    min-width: 30%;
    font-size: 18px;
    padding: 0 18px;
  }
}