* {
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    background: whitesmoke;
    margin: 0
}

p,
input {
    margin: 0
}

#form {
    max-width: 250px;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid lightgray;
    background-color: white;
    border-radius: 5px;

    /* box-shadow: 0px 1px 10px gray; */
}

.form-title {
    text-align: center;
    font-size: 20px;
    color: gray;
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    margin-bottom: 20px;
    width: 96%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid lightgray;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 1px solid var(--main-bg-color);
    outline: 0;
}

input[type="checkbox"]{
    margin-bottom: 20px;
}

.submit {
    text-align: center;
}

#submit_button {
    display: inline-block;
    border: 0px solid var(--main-bg-color);
    border-radius: 3px;
    background: var(--main-bg-color);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 0.7em 1em;
    width: 100%;
}

.btn_movimas {
    background: #9d2428 !important;
}

#submit_button:hover {
    opacity: 0.9;
}
#submit_button:active{
    opacity: 0.5;
}

#logo{
    margin: 50px auto;
    max-width: 360px;
}

#logo img{
    width:100%;
}