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

:root {
    --roxo: #6A0DAD;
    --lilas: #9B51E0;
    --light-purple: #E8D5FF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-text: #333333;
    --accent: #FFD700;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    /* background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    color: var(--roxo);
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-login, .btn-signup {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
}

.container-user {
    display: flex;
    background: var(--roxo);
    align-items: center;
    gap: 2rem;
    height: 30vh;
}

.user-img {
    width: 150px;
    height: 150px;
    margin: 20px;
    border: 2px solid var(--lilas);
    margin-left: 5rem;
    background-color: #9B51E0;
}

.user-data {
    margin-bottom: 50px;
    color: #FFFFFF;
}

.email {
    color: #cecece;
}

.addTask { 
    display: flex;
    width: 12%;
    margin-left: 86%;
    margin-top: 40px;
    justify-content: center;
}

.addTask button {
    border: none;
    padding: 10px;
    background-color: var(--roxo);
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.448);
    cursor: pointer;
    color: #F5F5F5;
    font-size: 15px;
    border-radius: 5px;
}

.main {
    height: 40vh;
}

.list-To-Do {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 40px;
}

.container-list h2 {
    font-weight: 400;
    font-size: 20px;
}

.database {
    width: 400px;
    height: 500px;
    background: #ECECEC;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-data {
    display: flex;
    justify-content: center;
    background: #D9D9D9;
    width: 350px;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

.add-data input {
    outline: none;
    border: none;
    background: #D9D9D9;
}

.information {
    background: #fff;
    margin-top: 20px;
    height: 60px;
    width: 80%;
    display: flex;
    gap: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.241);
}

.information p {
    margin-top: 10px;
}

.block1 {
    background-color: var(--roxo);
    width: 60px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.block2 {
    background-color: #f49dff;
    width: 15px;
    height: 40px;
    margin-left: 10px;
    border-radius: 10px;
}

