:root {
    --tsg-blue: #265398;
    --alizarin-red: #e74c3c;
    --carrot-orange: #e67e22;
    --emerald-green: #2ecc71;
    --custom-box-shadow: 0 0.313rem 0.625rem 0 rgba(0, 0, 0, 0.12);
}

/** Helper Classes **/
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 20px 0;
}

html,
body {
    height: 100%;
    font-family: 'Neo-Light', sans-serif;
}

body {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.form-signin {
    max-width: 330px;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0.313rem 0.625rem 0 rgba(0, 0, 0, 0.12);
}

.form-signin .form-floating:focus-within {
    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;
}

.form-signin button[type="submit"],
.form-signin button[type="button"] {
    border-radius: 5px;
    font-size: 12pt;
    text-transform: uppercase;
    background: var(--tsg-blue);
    border: 1px solid var(--tsg-blue);
    color: #fff;
    font-family: 'Neo-SemiBold', sans-serif;
}

.form-signin button[type="submit"]:hover,
.form-signin button[type="button"]:hover {
    background: #fff;
    border-color: var(--tsg-blue);
    color: var(--tsg-blue);
}