﻿@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap");

body {
  font-family: 'Arimo', sans-serif;
  align-items: center;
}

.welcome-page .logo {
  width: 64px;
}

.icon-banner {
  width: 32px;
}

.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;
}

.bankID-login-view {
  max-width: 22rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bankID-login-view img {
  height: 6rem;
  display: flex;
}

.bankID-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  max-width: 344px;
  width: 100%;
  height: 40px;
  color: #fff;
  background-color: #143A62;
  cursor: pointer;
  margin-block: 6px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.bankID-button:hover {
  text-decoration: none;
  color: #fff;
}

.no-margin {
  margin: 0;
}

#cancel {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.main-container {
  height: 100vh;
  width: 100%;
  display: flex;
}

.row-container {
  display: flex;
  flex: 1;
}

.right-div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.left-div {
  flex: 1;
  background-color: #143A62;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-div img {
  width: 200px;
  height: auto;
  margin-bottom: 80px;
}

.right-div h2 {
  margin-bottom: 40px;
  font-size: 22px; 
  line-height: 28px; 
  color: #143A62;
  font-weight: 500;
}

@media (max-width: 992px){
    .left-div{
        display:none;
    }
    .right-div h2 {
      font-size: 16px;
      line-height: 24px;
    }
    .bankID-button {
    max-width: 295px;
    }
  .right-div img {
    width: 150px;
    margin-bottom: 50px;
  }
}

#cancel a {
  color: #1C1C1B;
  text-decoration: underline;
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}


