.preprojeto-main {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container {
    text-align: center;
    background-color: #ffe5a4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 80vh;
    width: 90vw;
    font-weight: bold;
    text-transform: uppercase;
}

.login-container p {
    font-weight: 600;
    font-size: 30px;
    padding: 10px;
}

input {
    color: rgb(48, 48, 48);
    border: inset 3px #fff;
    padding: 5px 30px;
}

input::placeholder{
    font-size: 13px;
}

button {
    padding: 10px;
    border: outset 3px #fff;
}

button :active{
    border: inset 3px #fff;
}