﻿@import url('https://fonts.googleapis.com/css?family=Oswald');

body {
    background: #0f0c29; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: 'Oswald', sans-serif !important;
}

.login-page {
    max-width: 475px;
    padding: 8% 0 0;
    margin: auto;
}

.form {
    position: relative;
    z-index: 1;
    background: #3d3d3d24;
    max-width: 375px;
    margin: 0 auto 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border: 1px solid white;
    border-radius: 20px;
}

.copy {
    text-align: center;
    color:white;
}

.formtitle {
    font-size: 4rem;
    color: white;
    margin-top: -10px;
    margin-bottom: 20px;
}

.form input {
    outline: 0;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 8px;
    box-sizing: border-box;
    font-size: 15px;
}

.actionbutton {
    font-size: 18px;
    text-transform: uppercase;
    outline: 0;
    background: #e84c3d;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    width: 100%;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

actionbutton:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

actionbutton:hover {
    padding-right: 25px;
}

    actionbutton:hover:after {
        opacity: 1;
        right: 0;
    }

.form .message {
    margin: 15px 0 0;
    color: white;
    font-size: 20px;
}

    .form .message a {
        color: #e84c3d;
        text-decoration: none;
    }

.form .register-form {
    display: none;
}

a {
    color: white;
    text-decoration: none;
}
.container {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

    .container:before, .container:after {
        content: "";
        display: block;
        clear: both;
    }

    .container .info {
        margin: 50px auto;
        text-align: center;
    }

        .container .info h1 {
            margin: 0 0 15px;
            padding: 0;
            font-size: 36px;
            font-weight: 300;
            color: #1a1a1a;
        }

        .container .info span {
            color: #4d4d4d;
            font-size: 12px;
        }

            .container .info span a {
                color: #000000;
                text-decoration: none;
            }

            .container .info span .fa {
                color: #EF3B3A;
            }

body {
    background-size: 100%
}

@media screen and (max-width: 480px) {
    .login-page {
        width: -webkit-fill-available !important;
        height: -webkit-fill-available !important;
        padding: 26px !important;
    }
    .formtitle {
        font-size: 4rem;
        color: white;
        margin-top: -20px;
        margin-bottom: 20px;
    }

}