﻿* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #F4F6FA;
    color: #999;
}

.common {
    width: 768px;
    margin: 0 auto;
}

.main-top {
    background-color: #0094ff;
    height: 65px;
}

    .main-top div {
        display: flex;
        height: inherit;
        align-items: center;
        color: white;
    }

    .main-top h2 {
        margin-left: 20px;
    }

    .main-top img {
        width: 200px;
        height: 31px;
    }

    .main-top a {
        display: block;
        width: 100%;
        text-align: right;
        padding-right: 25px;
        text-decoration: none;
        color: white;
    }

.main-step {
    display: flex;
    align-items: center;
    height: 200px;
}

    .main-step .common {
        height: 100px;
        position: relative;
        min-width: 768px;
    }

    .main-step .main-step-line {
        border-top: 1px solid #D3D5D9;
        border-bottom: 1px solid #D3D5D9;
        position: absolute;
        width: 643px;
        top: 30px;
        left: 62.5px;
        z-index: 995;
    }

    .main-step ul {
        width: 100%;
        position: absolute;
        left: 0;
        top: 15px;
        z-index: 996;
    }

        .main-step ul li {
            display: inline-block;
            width: 125px;
            text-align: center;
            display: inline-block;
            list-style-type: none;
        }

            .main-step ul li:nth-child(2) {
                margin: 0 191px;
            }

            .main-step ul li span, .main-step ul li a {
                display: block;
                color: #c2c2c2;
                text-align: center;
            }

            .main-step ul li a {
                height: 40px;
                line-height: 40px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 14px;
                text-decoration: none;
            }

            .main-step ul li > span:first-child {
                margin: 0 auto;
                color: white;
                font-weight: bold;
                font-size: 17px;
                width: 30px;
                height: 30px;
                line-height: 30px;
                border-radius: 50%;
                background-color: #0094ff;
            }

.main-content {
    display: flex;
    flex-direction: column;
    width: 768px;
    height: 450px;
    margin: 0 auto;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 15px #F4F6FA;
}

    .main-content form input[type=text] {
        height: 38px;
        line-height: 38px;
        border: 1px solid #e2e2e2;
        width: 350px;
        margin-left: 15px;
        outline-style: none;
        text-indent: 15px;
        color: #999;
        -webkit-transition: all 0.25s;
        -moz-transition: all 0.25s;
        -o-transition: all 0.25s;
        transition: all 0.25s;
    }

        .main-content form input[type=text]:focus, .main-content form input[type=text]:hover {
            border: 1px solid #4db7e6;
        }

    .main-content form > div {
        margin-bottom: 35px;
    }

    .main-content form i {
        font-weight: normal;
        font-size: 20px;
        color: red;
        vertical-align: middle;
        padding: 0 5px;
    }

    .main-content form label {
        display: inline-block;
        width: 100px;
        font-size: 15px;
        text-align: right;
        cursor: pointer;
    }

    .main-content form button[type=submit] {
        position: relative;
        width: 150px;
        margin: 0 auto;
        background-color: #4db7e6;
        border: none;
        height: 40px;
        color: white;
        font-size: 20px;
        font-weight: normal;
        outline-style: none;
        border-radius: 2.5px;
        cursor: pointer;
        margin-left: 115px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
    }

        .main-content form button[type=submit]::after {
            content: "✔";
            font-weight: 800;
            font-size: 20px;
            position: absolute;
            left: 20px;
            top: 5px;
        }

        .main-content form button[type=submit]:hover {
            background-color: #2195CE;
            text-indent: 5px;
        }

    .main-content .main-container {
        display: flex;
        justify-content: center;
        padding-top: 45px;
    }

.main-instructions {
    padding: 0 35px;
}

    .main-instructions h3 {
        height: 45px;
        line-height: 45px;
        border-bottom: 1px dashed #e2e2e2;
        color: black;
    }

    .main-instructions p {
        margin-top: 15px;
        line-height: 25px;
    }

footer {
    text-align: center;
    margin-top: 35px;
    font-size: 13px;
}

.main-error-msg {
    display: block;
    height:45px;
    text-indent:115px;
    color: red;
    font-weight: bold;
}
