﻿.alert {
    width: 90%;
    margin: 20px auto 0;
}

.login-form {
    width: 90%;
    /*height: 470px;*/
    margin-top: 70px;
    text-align: center;
    display: inline-block;
    border: 1px solid rgb(36, 53, 135);
    padding: 0 50px 30px;
    border-radius: 2px;
    background-color: #f7f7f7;
}

    .login-form img {
        margin: 15px 0;
        height: 120px;
    }

    .login-form h1 {
        margin: 10px 0;
        font-weight: 600;
        color: rgb(36, 53, 135);
    }

    .login-form input {
        width: 100%;
        border: none;
        height: 75px;
        background-color: transparent;
        margin-bottom: 15px;
        outline: none;
        font-size: 26pt;
        font-weight: 600;
        font-family: 'Raleway', sans-serif;
        transition: border-bottom-color 0.35s;
        color: rgb(36, 53, 135);
        border-bottom: 2px solid rgba(36, 53, 135, 0.4);
    }

        .login-form input:focus {
            border-bottom-color: rgba(36, 53, 135, 1);
        }

        .login-form input::-moz-placeholder {
            color: rgba(36, 53, 135, 0.4);
        }

        .login-form input::-webkit-input-placeholder {
            color: rgba(36, 53, 135, 0.4);
        }

    .login-form p {
        color: rgb(36, 53, 135);
    }

        .login-form p:nth-child(2) {
            font-size: 8pt;
        }

        .login-form p:last-child {
            cursor: pointer;
            text-decoration: underline;
        }
