﻿* {
    margin: 0px;
    padding: 0px;
    outline: none !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: 100%;
}

.layout-boxed html,
.layout-boxed body {
    height: 100%;
}

body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: auto;
}
/* Layout */


a {
    color: #2f559a;
    text-decoration: none;
    background-color: transparent;
}

.btn-primary {
    color: #fff;
    background-color: #2f559a;
    border-color: #2f559a;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #3762b1;
        border-color: #3762b1;
    }

 .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
        color: #fff;
        background-color: #3762b1;
        border-color: #3762b1;
 }

.card-signin {
    border: 0;
    border-radius: 1rem;
    border: solid 1px #e2d0d0;
    margin-top: 48px;
}

    .card-signin .card-body {
        padding: 2rem;
    }

.form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
}

.form-signin {
    width: 100%;
}

    .form-signin .btn {
        font-size: 95%;
        border-radius: 5rem;
        letter-spacing: .1rem;
        font-weight: bold;
        padding: 0.8rem;
        transition: all 0.2s;
    }

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

    .form-label-group input {
        height: auto;
        border-radius: 2rem;
    }





.create-account {
    color: #555;
    font-weight: 500;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 5px;
}

header {
    background: #2f559a;
    color: white;
    font-size: 17px;
    padding: 5px 20px;
}
.logo {
    margin-bottom: 2rem;
}
.logo img {
  
    width: 230px;
}
.app-logo {
    margin-bottom: 1rem;
}
    .app-logo img {
        width: 239px;
    }


.connect-person {
    display: block;
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}

    /* Hide the browser's default radio button */
    .connect-person input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 12px;
    left: 91%;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: solid 1.5px #435c80;
}

.connect-person input:checked ~ .checkmark {
    background-color: #435c80;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.connect-person input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.connect-person .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
hr {
      border-top: 1px solid rgba(105, 75, 75, 0.24);
}
.choose-person {
    margin-top: 20px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {

    .connect-person .checkmark:after {
        left: 7px;
    }
    .card-signin {
        margin-top: 37px;
    }
}