@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import "normalize.css";
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:root{
    font-size: 62.5%;
    font-family: "Open Sans",sans-serif;
    color: #333333;
    --primary-color:#0A73CC;
    --primary-input-color:#0a73cc0d;
    --primary-placeholder-color:#0A73CC;
}

body {
    background: #fff;
    width: 100vw;
    height: 100vh;
    margin: none !important;
    display: flex;
}

input,button{
    cursor: pointer;
}

.flex{
    display:  flex;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.full{
    width: 100vw;
    height: 100vh;
}

.app-shadow{
    box-shadow: 0em 0 20em 2em rgb(0 0 0 / 20%);
}

.container{
    width: 100%;
    max-width: 1260px;
    height: 100vh;
}
.center{
    margin: 0 auto;
}

.column{
    flex-direction: column;
}

#login-section{
    width: 40%;
    display: flex;
    padding: 2em;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.form-header{
    margin-bottom: 97px;
}
.form-header h1 {font-size: 3.4em;}
.form-header h5 {
    font-size: 1.4em;font-style: normal;
    font-weight: 400;
}
.text-danger{
    color: red;
}
.text-input{
    background: var(--primary-input-color);
    border-radius: 0.4em;
    border: none;
    margin: 0.5em 0;
    padding: 1em;
    min-width: 300px;
}
.text-input::placeholder{
    font-weight: 400;
    font-size: 1em;
    color:var(--primary-placeholder-color);
}

.input-date{
    padding: 1.5em;
    background-color: var(--primary-input-color);
    border-radius: 0.5em;
    margin-right: 0.5em;
}
.input-date::-webkit-calendar-picker-indicator{
    color: var(--primary-placeholder-color);
}
.button-forgot{
    margin: 1.6em 0;
    background: transparent;
    text-align: start;
}

.button-login{
    height: 3.6em;
    border-radius: 0.4em;
    background: var(--primary-color);
    color: white;
}
.button-login:hover{
    background: #1680dd;
}

#app{
    display: flex;
}

#page-title{
    font-size: 2.5em;
    margin-bottom: 1em;
    display: block;
    color: var(--primary-color);
}
#page{
    width: 100%;
    height: 100vh;
    padding: 2em;
    background: white;
    overflow-y: overlay;
}

.project-card{
    cursor: pointer;
    width: 1fr;
    max-width: 300px;
    background: white;
    border-radius: 1em;
    padding: 1em;
    display: flex;
    justify-content: start;
    gap: 2em;
    align-items: center;
    box-shadow: 0em 1em 3em 0px rgba(22, 22, 22, 0.05);
    transition-duration: 300ms;
}
.project-card:hover{
    background: var(--primary-color);
    padding: 1.2em;
    color: white;
    box-shadow: 0em 1em 2em 0px rgba(0, 83, 191, 0.1);
    text-align: start;
}
.circle{
    border-radius: 100%;
}

/*Form*/
select{
    background: var(--primary-input-color);
    padding: 1em;
    border: none;
    border-radius: 0.5em;
    margin-bottom: 0.5em;
}
select:active, select:hover, select:enabled{
    /* border: 0.01em solid var(--primary-color); */
    border: none;
}

option{
    background: none;
    padding: 1em;
}

.option-checkbox{
    border-radius: 0.5em;
    background: var(--primary-input-color);
    padding: 1.5em;
    margin-bottom: 1.5em;
    justify-content: space-between;
}

.option-checkbox p{
    font-size: 1.5em;
    color:#0A73CC;
}
