* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.2s;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: #ecf0f8;
    font-size: 14px;
}

/* typo */

label {
    color: #333333;
}

/* generally */

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper {
    width: auto;
    height: auto;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}

/* forms */

input[type=text], input[type=password], select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #cccccc;
    background-color: #ffffcc;
    border-radius: 4px;
}

input[type=text]:focus, input[type=password]:focus, select:focus {
    outline: none;
    border: 1px solid #284172;
    border-radius: 4px;
}

input[type=submit] {
    width: 100%;
    background-color: #284172;
    color: #ffffff;
    padding: 14px 20px;
    margin: 10px 0 0 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #284172;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #ffffcc;
}