@import "var.css";

:root {
    --opacityBackground: color-mix(in srgb, var(--white), transparent 22%);
    --loginBorderRadius: 12px;
}

body {
    background-position: center !important;
    background-size: cover !important;
    color: #666666;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Pen Title */
.pen-title {
    padding: 50px 0;
    text-align: center;
    letter-spacing: 2px;
}

.pen-title h1 {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 300;
}

.pen-title span {
    font-size: 12px;
}

.pen-title span .fa {
    color: #33b5e5;
}

.pen-title span a {
    color: #33b5e5;
    font-weight: 600;
    text-decoration: none;
}

.loginMaskStyles {
    position: relative;
    background: var(--opacityBackground);
    max-width: 320px;
    width: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.logoContainer {
    padding: 10px 0;
    font-size: 30px;
    text-align: center;
    border-top-left-radius: var(--loginBorderRadius);
    border-top-right-radius: var(--loginBorderRadius);
    margin-top: 10%;
}

/* Form Module */
.form-module {
    border-top: 4px solid var(--iboTypography);
    border-bottom-left-radius: var(--loginBorderRadius);
    border-bottom-right-radius: var(--loginBorderRadius);
}

.form-module .toggle {
    position: absolute;
    top: -0;
    right: -0;
    background: var(--iboTypography);
    height: 24px;
    color: var(--white);
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    padding: 0 6px;
}

.form-module .toggle .tooltip {
    position: absolute;
    top: 5px;
    right: -65px;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.form-module .toggle .tooltip:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.6);
}

.form-module .form {
    display: none;
    padding: 40px;
}

.form-module .form:nth-child(2) {
    display: block;
}

.form-module h2 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.form-module input {
    outline: none;
    display: block;
    /*width: 100%;*/
    border: 1px solid var(--iboTypography20);
    padding: 10px 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 84%;
}

.form-module input:focus {
    border: 1px solid var(--iboOrange);
    color: var(--iboOrange);
}

.form-module button {
    cursor: pointer;
    background: var(--iboTypography);
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: var(--white);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form-module button#azureLogin {
    background: #004bb7;
}

.form-module button#azureLogin:hover {
    background: #003f9d;
}

.form-module button#Submit:disabled {
    background: #9c9697;
    cursor: wait;
}

.form-module button#Submit:disabled:hover {
    background: #9c9697;
}

.form-module button:hover {
    background: var(--iboOrange);
}

.form-module button.dataImport {
    background: #e28900;
}

.form-module button.dataImport:hover {
    background: #ce7400;
}

.form-module .cta {
    border-top: 1px solid var(--iboTypography);
    width: 100%;
    padding: 15px 40px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}

.form-module .cta a {
    color: #323232;
    text-decoration: none;
}

.input-group {
    border-collapse: separate;
    display: table;
    height: 5px;
    position: relative;
    /*box-sizing: border-box;*/
    margin-bottom: 8px;
    width: 100%;
}

.input-symbol-left {
    display: table-cell;
    background-color: var(--iboTypography10);
    border: 1px solid var(--iboTypography20);
    border-right: none;
    color: var(--iboTypography);
    padding: 0 12px;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    width: 18%;
}

.inputToUppercase {
    text-transform: uppercase;
}

.form-module select {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid var(--iboTypography20);
    padding: 10px 15px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.fa {
    font-size: 18px;
}

.infoTextLoginPage {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    max-height: 250px;
    overflow: auto;
}

.infoTextLoginPage #infoTextDiv {
    flex: 1;
    font-size: 10pt;
    text-align: left;
    background-color: transparent;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    color: var(--iboTypography);
}
