*,
*::before,
*::after {
    box-sizing: border-box;
}
*, html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    letter-spacing: 0.02em;
}
body {
    background-color: white;    
}
h4, h5 {
    font-size: 16px;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Main-Page */

.main-page_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100vw;
    height: 100vh;
}
.main-page_logo {
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center; 
}
.main-page_logo img {
    height: 28px;
}
.main-page_auth-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-page_auth-form_container {
    width: 245px;
}
.main-page_h1 {
    font-size: 18px;
    color: #2F2F2F;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}
.main-page_email-container {
    position: relative;
}
.img-person {
    position: absolute;
    top: 7px;
    left: 3px;
    width: 14px;
}
.main-page_email:focus + .img-person {
    filter: brightness(0);
}
.main-page_email {
    font-family: 'Roboto';
    outline: none;
    border: none;
    border-bottom: solid 1px #E1E1E1;
    width: 100%;
    height: 30px;
    margin-bottom: 25px;
    padding-left: 25px;
}
.main-page_email::placeholder {
    color: #C9C9C9;
}
.main-page_password-container {
    position: relative;
}
.img-password {
    position: absolute;
    top: 5px;
    left: 4px;
    width: 14px;   
}
.main-page_password:focus + .img-password {
    filter: brightness(0);
}
.main-page_password {
    outline: none;
    border: none;
    border-bottom: solid 1px #E1E1E1;
    width: 100%;
    height: 30px;
    margin-bottom: 25px;
    padding-left: 25px;
}
.main-page_password::placeholder {
    color: #C9C9C9;   
}
.main-page_remember-me {
    margin-bottom: 25px;    
}
.main-page_checkbox {
    outline: none;
}


/* ********************************************************* */
/* CHECKBOX */

.main-page_checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.main-page_checkbox+label {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    user-select: none;
    padding: 0 0;
    color: #000;
}
.main-page_checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #E1E1E1;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    
}
.main-page_checkbox:checked+label::before {
    content: '';
    background: url('img/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90% 90%;
    transition: background 0.1s ease;
}

/* ********************************************************* */

.main-page_submit {
    border: none;
    font-size: 12px;
    padding: 12px 100px;
    color: white;
    background-color: #2F2F2F;
    border-radius: 35px; 
    cursor: pointer;
    width: 100%;    
}
.main-page_submit:focus {
    outline: none;
}
.main-page_copyright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px; 
    color: #6F6F6F;
    padding-right: 40px;
    padding-bottom: 15px;
}







/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Projects List - For Static Page */

.container {
    /* min-width: 1024px; */
    min-width: 1280px;
    max-width: 1600px;
    padding: 0;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

/* Header */
.header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
}

.header-left {
    background-color: white;
    width: 17%;
    display: flex;
    justify-content: space-around;
    align-items: stretch;  
}
.header-left a {
    display: block;
    color: black;
    font-size: 16px; 
    width: 100%;
    height: 100%;
}
.logo {
    margin: auto 40px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    border-bottom: 1px solid #E1E1E1;
}
.logo img {
    height: 28px;
}

.header-right {
    background-color: #F4F4F4;
    width: 83%;
    display: flex;
    justify-content: space-around;
    align-items: stretch;  
}
.header-right-container {
    margin: auto 40px;
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #E1E1E1;
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.sheet {
    display: inline-block;
    margin-right: 25px;
    margin-left: 25px;
    cursor: pointer;
    font-size: 15px;
}
.sheets a {
    text-decoration: none;
    color: black;
    font-size: 16px; 
}
.logout-link {
    margin-left: 50px;
}
.logout-link:hover {
    font-weight: bold;
}
.user-icon {
    padding: 7px;
    width: 35px;
    height: 35px;
    background-color: #C4C4C4;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 1.01em;
    margin-left: 3px;
}
.main {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: white;
}
.left-block {
    width: 17%;
    height: 400px;
    background-color: white;

    padding-left: 40px;
    padding-right: 40px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.border-bottom-for-block {
    padding-top: 35px;
    border-bottom: 1px solid #E1E1E1;
}
.right-block {
    width: 83%;
    min-height: 100vh;
    background-color: #F4F4F4; 
}

/* ********************************************************* */

.project-list-container {
    margin: 50px 40px;
}
.projects-list-header {
    font-size: 18px;
    margin-bottom: 50px;
}
.project-link {
    display: block;
    margin-left: 40px;
    margin-top: 20px;
    text-decoration: none !important;
    color: black !important;
}
.project-link:hover {
    font-weight: 700;
}
.link-disabled {
    pointer-events: none !important;
    color: #C4C4C4 !important;
}
.project-name {
    padding-left: 30px;
    font-size: 14px;
}
