body {
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color:#f4ece7;
    padding-top: 30px;
    display: flex;
    margin: 0;
    font-family: Arial, sans-serif;
    justify-content: flex-start;
}

.logosu {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logosu img {
    width: 300px;
    max-width: 100%;
}

.login-container {
    background-color: white;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    text-align: left;
    width: 300px;
}

label {
            display: block;
            margin-top: 10px;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 10px 40px 10px 10px; /* espaço à direita pro ícone */
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .password-container {
            position: relative;
        }

        .olho {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            cursor: pointer;
            opacity: 0.6;
        }

        .olho:hover {
            opacity: 1;
        }

        button {
            width: 100%;
            margin-top: 15px;
            padding: 10px;
            background-color: #ffb6c1;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover {
            background-color: #ff9bb0;
        }

        a#senha {
            font-size: 13px;
            color: #777;
            text-decoration: none;
        }

        a#senha:hover {
            text-decoration: underline;
        }

        .links {
            text-align: center;
            margin-top: 10px;
        }

input, .senha {
    display: block;
    width: 100%;
    padding: 10px 0px 10px 0px;
    margin-bottom: 20px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 1em;
}

button {
    font-size: 1em;
    background-color: #d3ccd1;
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 3px;
        cursor: pointer;
        transition: background 0.3s;
}

button:hover {
    background-color: #fbabe2;
}

.logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h2, label, a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 0;
    margin: 0 0 8px 0;
}


a#senha {
    font-size: 0.9em;
    text-align: right;
    color: #000000;
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}