﻿#content .web-direct[data-type="shop"] {
    left: 50px;
}

#content .web-direct[data-type="homepage"] {
    right: 50px;
}

#content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#validate-area {
    background:#fff;
    border-radius: 10px;
}

form {
    padding: 20px;
}

form label {
    display:block;
}

.location-box {
    height: 50px;
    width: 100%;
    display:flex;
    overflow:hidden;
}

    .location-box a {
        height: 100%;
        width: 50%;
        text-align: center;
        line-height: 50px;
        border-top: 2px solid gray;
        text-decoration: none;
        background-color: #eee;
    }

    .location-box a:hover {
        color: #666;
    }

        .location-box a[data-type="login"] {
            border-radius: 0 5px 0 0;
            border-right: 2px solid gray;
        }

        .location-box a[data-type="register"] {
            border-radius: 5px 0 0 0;
            border-left: 2px solid gray;
        }

        .location-box a[data-state="active"] {
            border-color: transparent;
            background-color: transparent;
        }

        .location-box a[data-state="active"]:hover {
            color: #222;
        }

#validate-area form input[type="submit"] {
    padding: 10px;
    line-height: 34px;
    width: 100%;
    height: 50px;
    cursor:pointer;
    border-bottom: 0;
}

    #validate-area form input[type="submit"]:hover {
        background-color: #ddd;
    }

#validate-area form input {
    margin: 5px 0;
    border-bottom: 1px solid #222;
    color: #555;
}

#validate-area form .item {
    margin-bottom: 10px;
}