:root {
    --bg-color: #F2F2F2;
    --text-color: #0D0D0D;
    --link-color: #7EBFD9;
    --hover-color: #03738C;
    --sec-color: #D9A87E;
}

@font-face{
    font-family: 'Roboto Condensed';
    src: url('/public/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto Condensed';
    src: url('/public/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto Condensed';
    src: url('/public/fonts/Roboto_Condensed/RobotoCondensed-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face{
    font-family: 'Roboto Condensed Light';
    src: url('/public/fonts/Roboto_Condensed/RobotoCondensed-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--text-color);
}

header {
    padding: 50px 10px;
    margin-bottom: 10px;
}

header h1 {
    color: var(--bg-color);
}

.main-container {
    background: #081620 url("/public/img/bg_mountain.jpg") top center no-repeat;
    background-size: 100%;
    min-height: 100vh;
}

nav {
    padding: 10px;
    background-color: var(--bg-color);
    margin: 0px 0px 15px;
}
.middle-container {
    background-color: var(--bg-color);
    padding: 15px 0px;
    margin-bottom: 15px;
}


footer {
    min-height: 200px;
}

.btn-outline-purple {
    border-color: #8A5DC7;
    color: #8A5DC7;
}
.btn-outline-purple * {
    color: #8A5DC7;
}
.btn-outline-purple:hover {
    border-color: #A869FF;
    background-color: #A869FF;
    color: var(--light);
}
.btn-outline-purple:hover * {
    color: var(--light);
}
.transition *, .transition {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    border-radius: 10px;
    background-color: var(--light);
}
.form-signin .checkbox {
    font-weight: 400;
}
.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}