body,
html {
    width: 100%;
    height: auto;
    padding-top: 1.8%;
    margin: 0;
    background-color: #e6e6e6;
    font-family: arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;            
}

.title-bar {
    text-align: center;
    color: #333333;
    font-size: 22px;
    padding-bottom: 40px;
}

.title-detail {
    text-align: center;
    color: #333333;
    font-size: 16px;
    padding-bottom: 40px;
}

.wrap {
    background-color: #ffffff;
    padding: 2%;
    width: 25%;
    min-width:350px;
    margin: 0 auto;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    box-shadow: 0 0 5px #ccc;
    border: 1px solid #fff;
}

input {
    width: 90%;
    margin-bottom: 10px;
    padding: 5%;
    border-radius: 6px;
    border: 1px solid #efefef;
    font-size: 15px;
    transition: all .2s ease-in-out;
}

input.submit {
    width: 100%;
    padding: 5%;
    border-radius: 6px;    
    border: 1px solid #45b3e7;
    font-size: 15px;
    background-color: #45b3e7;
    color: #fff;
    margin-top: 25px;
    transition: all .2s ease-in-out;
}

.button {
    width: 100%;
    padding: 10px;
    border-radius: 6px;    
    border: 1px solid #45b3e7;
    font-size: 15px;
    background-color: #45b3e7;
    color: #fff;
    margin-top: 25px;
    transition: all .2s ease-in-out;
}

.button:hover {
    background-color: #1138e6;
    border-color: #1138e6;
}

.button:active {
    background-color: #0d2fb8;
}

input:focus {
    outline: none;
    border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}        

.appearance-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;            
    background-position: 218px center;
    width: 180px;
    height: 30px;
    border: 1px solid #ddd;
    padding-left: 20px;
}        

.footer {
    width: 100%;
    margin-top: 20px;
}

.ver-info {
    position: absolute;
    bottom: 5px;
    left: 45%;
    color: #c5c5c5;
}

.footer img {
    float: right;
    margin: 10px;
}