﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    ;
    font-size: 13px;
}

#LoginFormHeader {
    padding: 10% 11%;
    background: #161D6F;
}

#LoginForm {
    max-width: 100%;
    margin-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
}

.btn-success,
.btn-success.disabled {
    background: #161D6F;
    border: 2px solid #b2c59d;
}

/* General resets */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

/* Full-height rows */
.vh-100 {
    height: 100vh;
}

/* Left column with dynamic background colors */
.bg-column {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;     /* Vertically center */
    transition: background-color 1s ease-in-out;
    position: relative;
    height: 100vh;
}

/* Centered text */
.centered-text {
    text-align: center;
    color: white;
}

.centered-text h1 {
    font-size: 3em;
    font-weight: 700;
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

/* Hide the left column on small devices */
@media (max-width: 768px) {
    .bg-column {
        display: none;
    }
}