/* GLOBALES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

html {
    font-size: 14px;
}

body {
    background-color: #eee;
}

.log_container {
    width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.log_container img {
    width: 300px;
    -webkit-filter: drop-shadow(5px 5px 5px #666666);
    filter: drop-shadow(5px 5px 5px #666666);
    margin-bottom: 2rem;
}

.log_container input {
    width: 200px;
    margin-top: 1rem;
    padding: .5rem;
    border-radius: .3rem;
    outline: none;
    box-shadow: 5px 5px 5px #aaaaaa;
    text-align: center;
}

.log_container input:focus {
    box-shadow: 3px 3px 3px #888888;
}

.log_container button {
    margin-top: 1rem;
    width: 200px;
    padding: .5rem;
    background-color: transparent;
    cursor: pointer;
    border-radius: .3rem;
    box-shadow: 5px 5px 5px #aaaaaa;
    transition: background-color .5s;
}

.log_container button:hover {
    background-color: #4ccd4c6c;
}

.log_container button:active {
    box-shadow: 3px 3px 3px #888888;
}

.index_container {
    width: 90%;
    margin: 3rem auto;
}

.index_container a {
    background-color: #fff;
    width: 130px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #888;
    border-radius: .5rem;
    box-shadow: 5px 5px 5px #aaa;
    transition: all .5s;
    margin-bottom: 2rem;
}

.index_container a:hover {
    box-shadow: 3px 3px 3px #666;
}

.index_container a img {
    width: 100px;
    -webkit-filter: drop-shadow(5px 5px 5px #666666);
    filter: drop-shadow(5px 5px 5px #666666);
    margin-bottom: .3rem;
}

.seekerCaption {
    width: 100%;
    color: #eee;
    background: linear-gradient(to right, #474787, #eee);
    text-align: left;
    padding: .5rem 1rem 1rem 1rem;
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
    margin-bottom: -.5rem;
    display: flex;
    justify-content: space-between;
}

.seekerCaption input[type=text] {
    border-radius: .5rem;
    border: 1px solid #888;
    padding: 0 .5rem;
}

.btnAdd {
    padding: .5rem 1rem;
    border-radius: .5rem;
    background-color: #33d9b2;
    box-shadow: 5px 5px 5px #888;
    cursor: pointer;
    font-size: 1.2rem;
}

.btnAdd:hover {
    box-shadow: 2px 2px 2px #555;
    background-color: #218c74;
    color: #fff;
}

.btnSave {
    padding: .5rem 1rem;
    border-radius: .5rem;
    box-shadow: 5px 5px 5px #888;
    cursor: pointer;
    font-size: 1.2rem;
}

.btnSave:hover {
    box-shadow: 2px 2px 2px #555;
    background-color: #218c74;
    color: #fff;
}

.btnDelete {
    padding: .5rem 1rem;
    border-radius: .5rem;
    box-shadow: 5px 5px 5px #888;
    cursor: pointer;
    font-size: 1.2rem;
}

.btnDelete:hover {
    box-shadow: 2px 2px 2px #555;
    background-color: #ff5252;
    color: #fff;
}

.btnBack {
    padding: .5rem 1rem;
    border-radius: .5rem;
    box-shadow: 5px 5px 5px #888;
    cursor: pointer;
    font-size: 1.2rem;
}

.btnBack:hover {
    box-shadow: 2px 2px 2px #555;
    background-color: #227093;
    color: #fff;
}