*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body.utility-page {
    min-height: 100%;
    overflow: auto;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

#main {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000 url('imagenes/kashpay.jpg') no-repeat top center;
    background-size: cover;
    filter: grayscale(50%);
    transition: filter 1s;
}

#canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#demo-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px 40px;
}

.allcp-form {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 8% auto 0;
}

.mw320 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.mw600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo-wrap {
    text-align: center;
    margin-bottom: 20px;
    background-color: transparent;
}

.logo {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.panel {
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
}

.panel-black {
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.71);
    border: 1px solid #dddddd;
}

.panel-body {
    padding: 10px 15px;
}

.section {
    margin-bottom: 22px;
}

.section:last-child {
    margin-bottom: 0;
}

.field {
    display: block;
}

.prepend-icon {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.field-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    pointer-events: none;
}

.field-icon i {
    position: relative;
    font-size: 14px;
    color: #333f50;
}

.form-control {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 15px 6px 36px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.49;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #91dfe9;
}

.form-control::placeholder {
    color: #777777;
}

.btn {
    display: inline-block;
    padding: 9px 18px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.49;
    text-align: center;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: #333f50;
    color: #ffffff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2d3644;
}

.forgot-link {
    display: inline-block;
    padding-top: 5px;
    font-size: 14px;
    color: #c8c8c8;
    text-decoration: none;
}

.forgot-link:hover,
.forgot-link:focus {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .allcp-form {
        margin-top: 12%;
    }

    .logo {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    #content {
        padding: 16px 12px 32px;
    }

    .allcp-form {
        margin-top: 10%;
    }

    .mw320,
    .mw600 {
        max-width: 100%;
    }

    .panel-body {
        padding: 10px 12px;
    }

    .form-control {
        font-size: 16px;
    }
}

@media (max-width: 359px) {
    .field-icon {
        display: none;
    }

    .form-control {
        padding: 6px 18px;
        text-align: center;
    }
}
