@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow:hidden; 
}

h2 {
    color: #BB002D;
    font-weight: 400;
}

h3 {
    color: #000000;
    font-weight: 400;
}


p{
    font-size: 13px;
}

a {
    text-decoration: none;
}

a:hover {
    color: #4285F4;
}

input {
    font-size: 13px;
}

input[type="button"]:hover {
    cursor: pointer;
}

#container {
    width: 100vw;
    display: flex;
    justify-content: center;
}

#headerCont {
    width: 100vw;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid gainsboro;
}

#header {
    width: 960px;
    padding: 5px;
}

img[alt="Zmail Logo"] {
    height: 32px;
}

.button {
    border-radius: 5px;
    background-image: linear-gradient(to top, rgb(207, 207, 207) 16%, rgb(252, 252, 252) 79%); 
    padding: 3px;
    border: 1px solid #000;
    color: black;
    text-decoration: none;
}

.button:hover {
    border-radius: 5px;
    background-image: linear-gradient(to top, rgb(207, 207, 207) 16%, rgb(230, 230, 230) 79%); 
    padding: 3px;
    border: 1px solid #000;
    color: black;
    text-decoration: none;
}

#bodyCont {
    width: 100vw;
    display: flex;
    justify-content: center;
}

#body {
    width: 960px; 
    padding: 10px;   
}

#leftCol, #rightCol {
    padding: 10px;
}

#leftCol {
    border-right: 0.5px solid gainsboro;
    margin: 0;
    width: 470px;
}

#rightCol {
    display: inline-block;
    width: 258px;
}

.centerFlex {
    display: flex;
    justify-content: center;
}

input[placeholder="Password"] {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 255px;
}

input[placeholder="Email"] {
    display: block;
    margin-top: 10px;
    width: 255px;
}

#helpIcon1 {
    color: #727272;
}

#helpSpan1 a {
    color: #727272;
}

#helpBtn {
    width: 180px;
}

#helpBtn:hover span, #helpBtn:hover span a {
    color: #4285F4;
}

/* Mail.html */

#headerContNFX {
    border-bottom: 1px solid gainsboro;
    padding: 5px;
    padding-left: 20px;
    background: #f4f4f4;
}

#accountInfo {
    display: inline-block;
    float: right;
}

#accountInfo:hover {
    cursor: pointer;
}

#accountInfo img {
    position: relative;
    top: 2px;
    margin-right: 5px
}

#accountName {
    display: inline-block;
    margin: 0px;
    color: #727272;
    height: 32px;
    text-align: center;
    line-height: 32px;
    position: relative;
    bottom: 9px
}

#downIcon1 {
    color: #727272;
    position: relative;
    bottom: 1.5px;
}

#foldersDiv {
    width: 140px;
    position:absolute;
    left: 0;
    padding-top: 10px;
    height: calc(100vh - 46.7px);
}

#foldersList {
    border-spacing: 0px;
}

#foldersList tr td {
    width: 140px;
    padding: 5px;
    padding-left: 20px;
    border-left: 3px solid transparent
}

#foldersList tr td.hoverable:hover {
    border-left: 3px solid #BB002D;
    color: #BB002D;
    cursor: pointer;
}

#composeBtn {
    margin-bottom: 10px;
    width: 200px;
}

.focused {
    border-left: 3px solid #BB002D !important;
    color: #BB002D;    
}

#viewer {
    width: calc(100vw - 247.5px);
    height: 100vh;
    border: 0px;
    position: absolute;
    right: 0;
}

#copyright {
    width: 217px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid gainsboro;
    padding: 10px;
    padding-left: 20px;
}