@import url('https://fonts.googleapis.com/css?family=Roboto');

@font-face {
    font-family: "everlytic";
    src:url("../fonts/everlytic.eot");
    src:url("../fonts/everlytic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/everlytic.woff") format("woff"),
    url("../fonts/everlytic.ttf") format("truetype"),
    url("../fonts/everlytic.svg#everlytic") format("svg");
    font-weight: normal;
    font-style: normal;
}

* {
    margin:0;
    padding:0;
}

body {
    padding:10px;
    background-color: #f5f6f8;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #808080;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #424242;
}

form {
    padding: 0px 40px;
}

.panel {
    margin: auto;
    background-color: #ffffff;
    border: 1px solid #e4e4e6;
    padding: 55px 40px;
    -webkit-box-shadow: -2px 3px 5px -1px rgba(226,226,226,1);
    -moz-box-shadow: -2px 3px 5px -1px rgba(226,226,226,1);
    box-shadow: -2px 3px 5px -1px rgba(226,226,226,1);
}

.sub-text {
    padding: 0 20%;
}

.btn {
    background-color: #ffffff;
    padding: 5.5px 12px;
}

.btn-primary, .btn-primary[disabled] {
    background-color: #a7df00;
    border: 2px solid #a7df00;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.btn-loading {
    background: #a7df00 url('../img/puff.svg') center no-repeat;
    border: 2px solid #a7df00;
    padding: 25px 80px;
    width: 93px;
    height: 22px;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}


.btn-primary:hover, .btn-primary:active,  .btn-primary:focus{
    background-color: #ffffff;
    border: 2px solid #a7df00;
    color: #a7df00;
    -webkit-transition: background-color 500ms ease-out 0.1s;
    -moz-transition: background-color 500ms ease-out 0.1s;
    -o-transition: background-color 500ms ease-out 0.1s;
    transition: background-color 500ms ease-out 0.1s;
}

label {
    display:block;
    font-size:14px;
    margin:10px 0 2px;
    font-weight: 300;
}

.form-control {
    padding:10px 5px;
    border: 2px solid #cacaca;
    width: 100%;
    border-radius: 3px;
}

.msg-block {
    margin-top:5px;
}

.msg-error {
    color:#a94442;
    font-size:14px;
}

.success {
    color: #2ca02c;
}

.error {
    color: #a94442;
}

.pad-top20{
    padding-top: 20px;
}

.pad-bottom20{
    padding-bottom: 20px;
}

.password + .unmask {
    position: relative;
    width: 25px;
    height: 25px;
    background: #ffffff;
    cursor:pointer;
    -webkit-appearance:none;
    border: none;
    outline: none;
}

.password + .unmask:before {
    font-family: 'everlytic';
    content: "\40";
    position:absolute;
    top:4px; left:4px;
    width: 30%;
    height: 25px;
    z-index:1;
}

.password[type="text"] + .unmask:after {
    font-family: 'everlytic';
    content: "\40";
    position:absolute;
    top:4px;
    left:4px;
    color: #7b7c7e;
    width: 13px;
    height: 13px;
    z-index:2;
}

.text-white {
    color: #ffffff;
}

.text-light-grey {
    color: #cacaca;

}

.unmask {
    font-family: "everlytic";
    top: -30px;
    left: 92%;
}

.move-me {
    margin-left: -25px;
}


/* ICONS */
[data-icon]:before {
    font-family: "everlytic" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="seve-icon-"]:before,
[class*=" seve-icon-"]:before {
    font-family: "everlytic" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.seve-icon-eye:before {
    content: "\40";
}

.checkmark {
    width: 100px;
    margin: 0 auto;
    padding-top: 0px;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    animation: dash 2s ease-in-out;
    -webkit-animation: dash 2s ease-in-out;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.error-message {
    display:none;
    margin-top:2px;
    padding:5px;
}