@charset "utf-8";

.main {
    width: 260px;
    margin: 100px auto 0;
    padding: 20px;
    background-color: #F6B48C;
    border-radius: 10px;
    box-sizing: border-box;
}

.title {
    text-align: center;
    margin-bottom: 20px;
}

.title > p {
    margin: 0;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: bold;
}

.id,
.pass {
    margin-bottom: 15px;
}

.id > label,
.pass > label {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
}

.id > input,
.pass > input {
    width: 100%;
    height: 34px;
    padding: 0 8px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.submit {
    text-align: center;
    margin-top: 20px;
}

.submit > input {
    width: 120px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #555555;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit > input:hover {
    background-color: #EBEBEC;
}