﻿.login {
    margin-top: 40px;
    max-width: 425px;
}

    .login .required-information {
        font-style: italic;
        margin-bottom: 5px;
    }

    .login .btn-login {
        margin-top: 30px;
        width: 45%;
    }

/* Login Header Styles */
.login-header {
    width: 100%;
    height: 350px;
    text-align: center;
}

    .login-header .login-header-text {
        color: white;
        font-weight: bold;
    }

    .login-header .welcome {
        font-size: 80px;
        padding-top: 75px;
    }

    .login-header .log-in {
        margin: auto;
        width: 200px;
        padding-top: 15px;
        padding-bottom: 2px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

    .login-header .notch {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: center;
        position: absolute;
        top: 300px;
    }

        .login-header .notch:before {
            content: "";
            display: block;
            height: 50px;
            background: #fff;
            position: relative;
            flex-grow: 1;
        }

        .login-header .notch .triangle {
            content: "";
            width: 0;
            height: 0;
            border-top: 50px solid transparent;
            border-bottom: 40px solid #fff;
            border-left: 45px solid #fff;
            border-right: 45px solid #fff;
            display: inline-block;
            overflow: hidden;
        }

            .login-header .notch .triangle .triangle-icon {
                position: absolute;
                margin-left: -18px;
                margin-top: -7px;
                font-size: 24px;
                color: #0071B5;
                background-color: white;
                border-radius: 50%;
                padding: 7px;
            }

        .login-header .notch:after {
            float: right;
            content: "";
            display: block;
            height: 50px;
            background: #fff;
            position: relative;
            flex-grow: 1;
        }

    .login-header .notch-container {
        display: flex;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
        width: 90px;
        margin: 0 auto;
    }

        .login-header .notch-container:before {
            display: inline-block;
            content: "";
        }

        .login-header .notch-container:after {
            float: right;
            content: "";
            display: inline-block;
            height: 31px;
            background: #fff;
            position: relative;
            flex-grow: 1;
        }

.notch-margin-hack {
    margin-top: 40px; /* Required to prevent overlap with the bottom of the notch */
}
