body {
    background-color: #44c4e7;
    color: darkslategray;
    font-family: "Helvetica", "Arial", sans-serif;
}

#panel_master {
    position: absolute;
    top: 30%;
    left: 50%;
    background: #fff;
    pointer-events: none;
    min-height: 60px;
    width: 365px;
    margin: -140px 0 0 -182px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#panel_master section {
    pointer-events: all;
}

#panel_login 
{
    background: #fff;
    width: 365px;
}

#login_cont {
    padding: 40px;
}

form p
{
    font-size: 14px;
}

#panel_reg, #panel_recover {
    position: absolute;
    top: 170px;
    height: 100%;
    width: 365px;
    margin-left: -365px;
    overflow-x: hidden;
    transition: 0.3s;
}

#reg_cont, #recover_cont {
    background-color: #fff;
    padding: 40px;
    height: 100%;
    box-sizing: border-box;
}

#panel_recover {
    margin-left: 365px;
}

.login_head {
    /*background-color: #0066cc;*/    
}

#logo
{
    padding-top: 30px;
    height: 130px;
    text-align: center;
}

h2 
{
    margin: 0 0 20px;
    line-height: 1;
    color: darkslateblue;
    font-size: 20px;
    font-weight: 400;
}

.input {
    outline: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: darkslategray;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
.input:focus
{
    color: #333;
    border: 1px solid #44c4e7;
}

.link_small {
    margin-top: -14px;
    font-size: 12px;
    text-align: right;
}

#submit, #register, #recovery {
    cursor: pointer;
    background: #0033cc;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

#submit:hover, #register:hover
{
    background: #369cb8;
}

.login_foot {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

.login_foot a, .link_small {
    color: blue;
    /*text-decoration: underline;*/
    cursor: pointer;
}

.login_foot a:hover, .link_small:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    
    body {
        margin: 0;
    }
    
    #panel_master {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        top: 0;
        left: 0;
    }
    
}