﻿
.error {
    /* position: absolute;
    top: -60px;
    */
    position: relative;
    width: 100%;
    top: 15%;
    /*margin-bottom: 60px;*/
}
.error-view {
    position: relative;
    margin-bottom: 10px;
}
.error-view {
    position: relative;
    margin-bottom: 10px;
}

.vertical-center {
    min-height: 100%; /* Fallback for vh unit */
    /*min-height: 100vh;*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* Align the bootstrap's container vertically */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
    width: 100%;
    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.
  
     Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.rounded-corner {
    border-radius: 10px;
}

.error .panel {
    width: 590px;
    margin: auto;
    padding: 5px 20px;
    /*max-height: 225px;*/
    /* max-width: 550px; */
    box-sizing: content-box;
    border-radius: 0px;
}


.error .panel-body {
    padding: 15px 0px;
}

    .error .panel .form-group {
        text-align: left;
    }

.error h5 {
    font-weight: 500;
    opacity: 0.8;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
    font-size: 18px;
    font-family: Helvetica;
    color: #333;
    padding-left: 15px;
    padding-right: 15px;
}

.auttosignup h5 {
    border-bottom: none !important;
    padding-bottom:10px !important;
}

.error h1 {
    font-size: 30px;
    color: #333;
    font-family: Helvetica Light;
    padding-top: 35px;
    font-weight: normal;
    margin: 0px;
}

.error.user-report h5 {
    border-bottom: none;
}

.error .btn {
    text-transform: none;
    padding: 8px 17px !important;
    font-family: Helvetica;
    max-width: 138px;
    font-weight: normal;
}

    .signup .btn.previous-button {
        border: 1px solid #ddd;
        font-family: Helvetica;
        padding: 8px 55px !important;
        max-width: 138px;
        font-weight: normal;
    }

span.errorText {
    float: left;
    /*position: relative;*/
    color: red;
    text-align: left;
    width: 100%;
    left: 0px;
    top: 10px;
    margin-bottom:10px;
}

@media (max-width: 780px) {
    .error {
        position: relative;
        margin-bottom: 20px;
        top: 0px;
        margin-top: 0;
    }

        .error .panel {
            width: auto;
            margin: auto;
            padding: 5px 20px;
            border-radius: 0;
        }
}


@media (max-height: 600px) {
 .error h1 {
        padding-top: 0px;
    }
}





