/* ESTILO */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

/* CABEÇALHO */

header {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .link {
    font-size: 13px;
    margin-left: 15px;
}

.google-apps {
    width: 40px;
    height: 40px;
    margin: 0 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-apps:hover {
    border-radius: 50%;
    background-color: #f0f0f0;
}

.google-apps img {
    height: 24px;
}

.login {
    width: 120px;
    height: 35px;
    background-color: #1a73e8;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* PRINCIPAL */

main {
    height: calc(100vh - 60px - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.google-logo img {
    height: 200px;
}

main .middle,
main .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .middle {
    width: 100%;
    height: 160px;
    padding: 20px;
}

.middle .search {
    position: relative;
    width: 580px;
    height: 45px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    margin-bottom: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.middle .search img {
    height: 24px;
}

.search-icon {
    height: 20px !important;
}

.delete {
    position: absolute;
    right: 25%;
}

.middle .search .left,
.middle .search .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle .search .left {
    width: 35px;
}

.middle .search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    margin-right: 10px;
    padding: 0 5px;
    border-right: 1px solid #ddd;
}

.middle .search .right {
    width: 140px;
}

.middle .buttons {
    display: flex;
}

.middle .buttons > div {
    width: 140px;
    height: 35px;
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 5px;
    margin: 0 5px;
    color: #3c4043;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.middle .buttons > div:hover {
    border: 1px solid #ddd;
    border-bottom-width: 2px;
}

main .bottom {
    width: 100%;
    height: 100%;
}




/* RODAPÉ */

footer {
    height: 100px;
}

footer > div {
    display: flex;
    align-items: center;
    height: 50%;
    background-color: #f2f2f2;
    color: #70757a;
    padding: 0 30px;
    border-bottom: 1px solid #dadce0;
    font-size: 15px;
}

footer .top {
    font-size: 15px;
}

footer .bottom {
    justify-content: space-between;
    font-size: 14px;
}

footer a {
    color: #70757a;
}

footer a:hover {
    text-decoration: underline;
}