@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap');

:root {
    --color_1: #ffffff;
    --color_2: #87f643;
    --white: #392279;
    --maincolor: var(--color_1);
    --mainfont: 'Cabin', sans-serif;


}

/*reset styles*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    border: 0 none;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    min-height: 480px;
    min-width: 321px;
    /*iphone size*/
    color: var(--maincolor);

    background: url('../assets/login-background.jpg') no-repeat center center fixed;
    background-size: cover;
}


/* Ensure page content sits above background */
section.container-fluid,
footer {
    position: relative;
    z-index: 1;
}


/***** link & button *********/

a,
button {
    color: var(--color_1);
    text-decoration: none;
    transition: all 0.1s ease-in-out 0s;
    -webkit-transition: all 0.1s ease-in-out 0s;
}

a span {
    transition: all 0.1s ease-in-out 0s;
    -webkit-transition: all 0.1s ease-in-out 0s;
}

a:focus,
a:hover {
    text-decoration: none;
    color: rgba(var(--color_2_rgb), 0.6);
}

:focus,
a,
a:hover,
a:active a:focus {
    outline: medium none !important;
}

a.link {
    color: var(--color_2);
}

a.link:hover,
a.link:focus {
    color: var(--color_4);
}

ul,
li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

h1 {
    font: 700 32px/1.3 var(--mainfont);
    color: var(--maincolor);
    margin-bottom: 15px;
}

h2 {
    font: 700 28px/1.5 var(--mainfont);
    color: var(--maincolor);
}

h3 {
    font: 700 20px/1.3 var(--mainfont);
    color: var(--maincolor);
}

h3.regular {
    font: 400 20px/1.3 var(--mainfont);
    color: var(--maincolor);
}

h4 {
    font: 400 18px/1.4 var(--mainfont);
    color: var(--maincolor);
}

h5 {
    font: 700 16px/1.2 var(--mainfont);
    color: var(--maincolor);
}

h6 {
    font: 600 16px/1.2 var(--mainfont);
    color: var(--maincolor);
}


p {
    font: 400 16px/1.5 var(--mainfont);
    margin-bottom: 5px;
}

b,
strong {
    font-weight: 700;
}


.l2_btn {
    font-size: 14px;
    display: inline-block;
    padding: 10px 37px;
    background-color: var(--color_2);
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    color: var(--white);

    outline: 0;
    position: relative;
    line-height: 25px;
    text-transform: uppercase;
    border: 2px solid var(--color_2);

    -webkit-transition: all .4s ease 0s !important;
    -khtml-transition: all .4s ease 0s !important;
    -moz-transition: all .4s ease 0s !important;
    -ms-transition: all .4s ease 0s !important;
    -o-transition: all .4s ease 0s !important;
    transition: all .4s ease 0s !important;
    text-decoration: none;
    text-align: center;
}

.l2_btn:hover,
.l2_btn:focus,
.l2_btn:active {
    background: var(--white);
    color: var(--color_2);
    text-decoration: none;
}



.logo_container {
    height: 50vh;
}

@media (max-width:768px) {
    .logo_container {
        height: 300px;
    }
}

footer {
    margin-top: 120px;

    width: 100%;
    color: #CCC;

    padding: 0 10px;
}

footer p {
    font: 400 18px/1.2 var(--mainfont);
}

.container-fluid {
    margin-top: 22%;
}