﻿/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

:root {
    --font: 'Nunito', sans-serif;
    --black: #1e1e1e;
    --white: #FFFAFA;
    --primary: #7571F9;
    --primary-dark: #153855;
    --primary-light: #52728B;
    --danger-light: #EA6570;
    --danger: #e74f5d;
    --danger-dark: #D45863;
    --secondary: #888888;
    --secondary-dark: #6e6e6e;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    color: var(--black);
    font-family: var(--font);
    font-size: 14px;
}

a {
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

.bg-primary-light {
    background-color: var(--primary-light);
}

.btn-primary {
    background-color: #005696;
    border: 1px solid #005696;
    /* color: var(--black); */
}

    .btn-primary:hover {
        background-color: rgba(117, 113, 249, 0.9);
        border: 1px solid rgba(117, 113, 249, 0.9);
    }

.bg-img {
    background-image: url('../../Images/backgroundimage.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
/*    width: 100%;
*/    height: 100vh;
/*    position: relative;
*/    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, select, input[type=file]:focus, textarea:focus, input[type=checkbox]:focus, input[type=number]:focus, input[type=submit]:focus, input[type=button]:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    border: 1px solid #ced4da;
}

.card{
    max-width:400px!important;
}
.card-body-width {
  /*  height: 400px !important;*/
    margin: auto;
    width: 380px;
/*    width: 100%;
*/}

/*.card-body {
    padding: 1rem 1rem;
}
*/
.form-control {
    font-size: 14px !important;
}

.login-h1 {
    color: #4b49ac;
    font-size: 1.5rem;
    text-align:center;
}

.fp-h1 {
    /* color: #4b49ac;
    font-size: 1.5rem;
    text-align: center;*/
    color: #005696;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 12px;
}
}

@media only screen and (max-width: 420px) {
    .card-body-width {
        height: 400px !important;
        margin: auto;
        width: 320px;
    }
}
