﻿@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.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; }

.container {
    margin-top: 55px;
    display: flex;
    justify-content: center;

}





.login-container{
    height: calc(100vh - 80px);
}

.login-form {
    background: #fff;
    width: 380px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: -2px 13px 20px 0px rgb(123 123 123);
    -webkit-box-shadow: -2px 13px 20px 0px rgb(123 123 123);
    -moz-box-shadow: -2px 13px 20px 0px rgb(123 123 123);
    height: 520px;
    position: relative;
    margin-top: 4%;
}
.login-loggo {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.login-loggo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
h2.loging-form-title {
    color: var(--argos-color-2, #03a9f4);
    margin-top: 35px;
    margin-bottom: 40px;
    /*font-weight: 600;*/
}

label {
    display: block
}

.inputField {
    width: 100%;
    margin: 10px 0;
    border: 0;
    border-bottom: 2px solid #cccccc;
    padding: 8px 0;
    font-size: 18px;
}
.inputField:focus {
   outline:none;
}

h6.forgetPassword {
    margin: 0;
    text-align: right;
    color: var(--argos-color-2, #03a9f4);
    font-size: 18px;
    font-weight:600
}

button.loginBtn {
    width: 100%;
    margin: 0 auto;
    display: flex;
    background: var(--argos-color-1, #8bc34a);
    border: 1px solid var(--argos-color-1, #8bc34a);
    padding: 10px 35px;
    border-radius: 5px;
    margin-top: 15px;
    color: #fff;
    transition: 0.3s all ease;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700 !important;
    flex-direction: column;
}


button.loginBtn :hover {
    background: #fff;
    color: #000;
}

a.registerNowLink {
    color: var(--argos-color-2, #03a9f4);
    text-decoration: none;
    font-size:14px;
    font-weight:600

}

h6.newUserText {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600
}

p.copyrightText {
    text-align: center;
    font-size: 12px;
    margin-top: 50px;
    position: absolute;
    width: calc(100% - 40px);
    line-height: 20px;
    bottom: 20px;
}


.oidc-not-authenticated__container h1, .oidc-not-authenticated__container p {
    display: none;
}
.oidc-not-authenticated__container:after {
    content: "Authentication...";
    font-size: 24px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%);
    font-weight: 600;
}