﻿body
{
    font-family: Arial;
    font-size: 12px;
}

.container
{
    width: 380px;
    height: 700px;
    position:fixed;
    left:0; right:0;
    top:0; bottom:0;
    margin:auto;
    max-width:100%;
    max-height:100%;
    overflow:hidden;
}

.container .heading
{
    text-align: center;
    margin: 10px 0 20px;
}

.container .heading .logo
{
    margin-bottom: 5px;
}

.container .heading .logo > p
{
    width: 227px;
    height: 52px;
    margin: 0 auto;
    background: url('Images/Marval-logo.svg');
    background-repeat: no-repeat;
}

.panel .mainContent
{
    padding: 20px 30px;
}

.panel .mainContent .login-icon
{
    font-size: 68px;
    width: 120px;
    height: 120px;
    line-height: 114px;
    display: block;
    margin: 20px auto 30px;
    border-radius: 20px;
    border: 1px solid #FFFFFF;
    background-color: #D5D5D5;
    text-align: center;
    color: #FFFFFF;
}

.panel .mainContent .login-icon .Image
{
    width: 64px;
    height: 64px;
    margin: 30px auto;
    background: url("Images/security_details_64.png");
}

.panel .form .input-wrapper
{
    color: #666666;
    border-bottom: 5px solid #F5F5F5;
    padding: 2px;
    background: #E5E5E5;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}

.panel .form .input-wrapper > input
{
    border: none;
    background: none;
    padding-left: 38px;
    padding: 6px 6px 7px;
    width: 97%;
}

.panel .form .inputArea
{
    padding-right: 15px;
    padding-left: 15px;
}

.panel .form .actionButtons > input
{
    width: 100%;
    margin-top: 5px;
    padding: 0 30px;
    height: 35px;
    line-height: 35px;
    border: 2px;
    background: #2db8e4;
    filter: none;
    color: #FFF;
    /* iOS insists on glare and border radius */
    -webkit-appearance: none;
    border-radius: 8px;
}

.panel .form .actionButtons > input:hover
{
    background: #073F5C;
}

.panel .form .actionButtons > input:hover
{
    box-shadow: inset 0 0 0 99999px rgba(255,255,255,0.2);
    cursor: pointer;
}

.text-align-center
{
    text-align: center;
}

.font-semibold
{
    font-weight: 500;
    color: #777;
}

h4
{
    font-size: 18px;
    margin: 5px 0 10px;
    display: block;
}

a
{
   color: #1495BA;
   text-decoration: none;
}

/*Validation*/
.info, .success, .warning, .error, .validation
{
    border: 1px solid;
    margin: 20px 0;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-size: 1.1em;
    border-radius: 8px;
}

.success
{
    color: #1495BA;
    background-color: #DFF2BF;
    background-image: url('Images/tick_16.png');
}

.error
{
    color: #D8000a;
    background-color: #FFBABA;
    background-image: url('Images/error_24.png');
}

.required
{
    color: #D8000a;
}

.login
{
    margin-top: 20px;
}