.panel-heading {
    font-family: 'HelveticaNeueLTStd-BdCn';
    text-transform: uppercase;
    font-size: 90px;
}
/* .container {
    margin-top: 80px;
    padding-left: 0px;
} */
form.form-horizontal {
    margin-top: 45px;
}

label.control-label {
    font-family: 'HelveticaNeueLTStd-Roman';
}

input#email,input#password,
input#name, input#password-confirm,
input#reset_email {
    height: 40px;
    width: 240px;
    border: 1px solid #000;
    background: #fff;
    padding: 0 12px;
    margin-bottom: 25px;
}

button.btn.btn-primary {
    height: 40px;
    padding: 0 12px;
    background: #000;
    color: #fff;
    margin-top: 15px;
}
form a {
    text-decoration: underline;
    display: block;
    margin-top: 22px;
    color: #666;
    font-size: 14px;
}
button.login,
.btn-link.login {
    cursor: pointer;
    transition: opacity .3s;
}
button.login:hover,
.btn-link.login:hover {
    opacity: 0.6;
}

/* Form Select Switches */
.switch {
    margin: 1px 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.switch input {
    position: absolute;
    opacity: 0;
}

.switch span {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    border-radius: 28px;
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    -webkit-transition: background-color 0.35s;
    transition: background-color 0.35s;
}

.switch span:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 1px;
    bottom: 1px;
    width: 24px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 50%;
    -webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.switch input:checked + span:after {
    left: 26px;
    border: none;
    -webkit-box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
}

.switch input:checked + span {
    background-color: #eeeeee;
}

.switch-default span {
    border-color: #dbe1e8;
}

.switch-default input:checked + span {
    background-color: #dbe1e8;
}

.switch-primary span {
    border-color: #652D88;
}
.switch-primary input:checked + span {
    background-color: #652D88;
}

.switch-info span {
    border-color: #7abce7;
}

.switch-info input:checked + span {
    background-color: #7abce7;
}

.switch-success span {
    border-color: #aad178;
}

.switch-success input:checked + span {
    background-color: #aad178;
}

.switch-warning span {
    border-color: #f7be64;
}

.switch-warning input:checked + span {
    background-color: #f7be64;
}

.switch-danger span {
    border-color: #ef8a80;
}

.switch-danger input:checked + span {
    background-color: #ef8a80;
}
