﻿:root {
    --imslot-blue: #342f79;
    --imslot-orange: #ff9300;
    --imslot-white: #b3b1ce;
}

body, html {
    height: 100%;
    overflow: hidden;
}

form {
    min-width: 100%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--imslot-orange);
    text-decoration: none;
    cursor: pointer;
}

.bg-imslot-blue {
    background-color: var(--imslot-blue) !important;
    color: white;
}

.bg-imslot-orange {
    background-color: var(--imslot-orange);
}

.image-box {
    background-image: url('../images/imslot_login.png');
    /* Control the height of the image */
    min-height: 480px;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-login {
    position: relative;
    margin: 0 auto;
    min-width: 33%;
    min-height: 15%;
    background-color: white;
    border-radius: 15px;
    opacity: 0.9;
}

.form-wrapper {
    max-width: 100%;
    clear: both;
    margin: 10px 15px;
}

.form-header {

}

.form-header-register:hover {
    color: var(--imslot-orange);
    text-decoration: none;
    cursor: pointer;
}

.form-header-login {
    float: left;
    min-width: 50%;
    padding: 25px;
    border-radius: 0 0 0 15px;
}

.form-header-register {
    float: left;
    min-width: 50%;
    background-color: var(--imslot-blue);
    color: var(--imslot-white);
    padding: 15px;
    border-radius: 0 15px 0 0;
}

.form-body {

}

.form-footer {
    text-align: center;
    background-color: var(--imslot-blue);
    padding: 15px;
    border-radius: 0 0 15px 15px;
}

.form-footer-title {
    color: var(--imslot-orange);
    font-weight: bold;
}

.form-footer-link {
    color: white;
    font-weight: bold;
    line-height: 20px;
}

.form-footer-link a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.form-footer-link a:hover {
    color: var(--imslot-orange);
    text-decoration: none;
}
