body {
    margin: 0;
    padding: 0;
    font-family: system-ui, sans-serif;
    font-size: 12px;
    color: #666;
    text-align: center;
    background: #FFF;
}

.container {
    width: 300px;
    margin: 100px auto 0;
    text-align: left;
}

input,
textarea,
option {
    font-size: 12px;
    font-family: system-ui, sans-serif;
}


/* mensajes */
.msj {
    padding: 5px 10px;
    color: #333;
    margin-bottom: 10px;
    border-left: 5px solid #DDDDDD;
    background: #F9F9F9;
    display: none;
}

.msj.ok {
    border-left-color: #28CC39;
    color: #1D7A26;
    background: #F4FCF5;
}

.msj.error {
    border-left-color: #C00;
    color: #C00;
    background: #FCF2F2;
}

.msj.info {
    border-left-color: #FC0;
    background: #FFFFE5;
}

form {
    padding: 10px 15px;
    border: 1px solid #EEE;
    margin-bottom: 5px;
}

.f-right {
    text-align: right;
    width: 60px;
}

table {
    width: 100%;
}

table tr td {
    padding: 3px 5px;
}

table tr th {
    font-size: 16px;
    font-weight: bold;
    background: url(../img/icons/login.png) no-repeat 0 -2px;
    padding: 4px 0 6px 30px;
}

table tr td input {
    border: 1px solid #EEE;
    padding: 2px 5px;
    width: 176px;
}

table tr td input#button {
    width: 76px;
    cursor: pointer;
    border: none;
}

table tr td input#button:hover {
    background: #BCDDFF;
    border: none;
}

.desarrollado {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.desarrollado a {
    text-decoration: none;
    font-size: 11px;
    color: #999;
}

.desarrollado a:hover {
    color: #666;
}