* {
    margin: 0;
    padding: 0;
}

body {
    color: #435160;
    font-family: "Open Sans", sans-serif;
    background-image: url("../images/escheresque.png");
}


a {
    color: #435160;
    text-decoration: none;
}
#title h1{ font-family: 'Nanum Gothic'; margin: 0px; padding-top: 15px; font-size: 2.7em;
font-weight: normal;}
#title{ color:#fff; background-color: #4FBAE0; height:80px; margin-top: 0;}

.login {
    width: 350px;
    position: absolute;
    top: 19%;
    left: 50%;
    margin-left: -175px;
}

#exist {
    padding: 20px 0px;
    background: transparent;
    border: 0;
    outline: none;
    color: indianred;
    font-size: 16px;
    display: none;
    position: absolute;
}

input[type="text"], input[type="password"] {
    width: 330px;
    padding: 20px 10px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #435160;
    outline: none;
    color: #6D7781;
    font-size: 1.3em;
}
input[type=checkbox] {
    display: none;
}

.invalid{
    color: orangered !important;
}

label {
    display: block;
    position: absolute;
    margin-right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    content: "";
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 3px solid #435160;
}

#agree:checked ~ label[for=agree] {
    background: #435160;
}


input[type="submit"], .button {
    background: #F68E55;
    border: 0;
    width: 350px;
    height: 40px;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
}
input[type="submit"]:hover, .button:hover {
    /*background: #16aa56;*/
    background: #FBAF5C;
    /*animation-name: shake;*/
}

.done {
    background: #2E3740;
    border: 0;
    width: 350px;
    height: 40px;
    color: #828282;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.forgot {
    margin-top: 30px;
    display: block;
    font-size: 11px;
    text-align: center;
    font-weight: bold;
}
.forgot:hover {
    margin-top: 30px;
    display: block;
    font-size: 11px;
    text-align: center;
    font-weight: bold;
    color: #6D7781;
}

.agree {
    padding: 30px 0px;
    font-size: 12px;
    text-indent: 25px;
    line-height: 15px;
}

::-webkit-input-placeholder {
    /*color: #435160;*/
    color: #828282;
    font-size: 12px;
}

.animated {
    animation-fill-mode: both;
    animation-duration: 1s;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}
