
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Afacad, sans-serif;
    background-color: #f9f4fc;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-top: 50px; 
}


header {
    background-color: #F6F0F6;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a::before {
    content: "•";
    font-size: 18px;
    color: #BA68C8;
}

nav ul li a:hover {
    background-color: #BA68C8;
    color: rgba(246, 240, 246, 0.8);
    border-radius: 3px;
    padding-right: 10px;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.login-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    color: #2d0052;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2d0052;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.opcoes {
    text-align: center;
    margin-bottom: 15px;
}

.link {
    text-decoration: none;
    color: #2d0052;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link:hover {
    color: #b789de;
}

.opcoes input {
    margin-right: 5px;
}

.btn {
    display: inline-block;
    width: 100%;
    background-color: #d3a9f3;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b789de;
}

.cadastro {
    background-color: transparent;
    color: #2d0052;
    border: 2px solid #d3a9f3;
    margin-top: 15px;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    transition: all 0.3s;
}

.cadastro:hover {
    background-color: #d3a9f3;
    color: white;
}

p {
    color: #2d0052;
    margin: 10px 0;
    font-size: 0.9rem;
}


@media (max-width: 480px) {
    .login-box {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .btn, .cadastro {
        font-size: 0.9rem;
    }
}

