@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap');

.txtColor {
     color: red;  
  }

.login-form,
.login-form * {
    box-sizing: border-box;
    /* font-family: 'Source Sans Pro'; */
    font-family: Georgia, serif !important;
}

.login-form {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.login-form__content{
    display: flex;
    flex-direction: column;
    width: 500px;
}

@media (max-width: 510px) {
   
    .login-form__content{
        width: 100% ;
        padding: 12px;
    }

    .login-form{
        width: 100%;
    }
}

.login-form__logo-container {
    padding: 30px;
    background: rgba(0, 0, 0, 0.25);
}

.login-form__content {
    padding: 30px;
    background: #fff;
}

.login-form__header {
    margin-bottom: 15px;
    text-align: center;
    color: #333333;
}

.login-form__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgb(222, 226, 230);
    background: #ffffff;
    outline: none;
    transition: border-color 0.5s;
}

.login-form__input:focus {
    border-color: #1345ac;
    background-color: #fff !important;
}

.login-form__input::placeholder {
    color: #aaaaaa;
}

.login-form__input:focus {
    background-color: transparent;
  }

  .login-form__input:valid {
    background-color: transparent;
  }

.login-form__button {
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    background: #009578;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form__button:active {
    /* background: #095779; */
}

.login-form__links {
    margin-top: 15px;
    text-align: center;
}

.login-form__link {
    font-size: 0.9em;
    color: #179bd7;
    text-decoration: none;
}


/* login */

.rn-login{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 18px;
}

.rn-login label{
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
    color: #1345ac;
}

.log-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    font-size: 18px;
    color: #1345ac;
    font-weight: 800;
    /* font-family: 'Source Sans Pro'; */

    font-family: Georgia, serif !important;
}