:root {
    --bg-red: #e75858ea;
    --bg-green: #227501b7;
    --bg-purple: #7b5bf1;
    --bg-blue: #00a2ff;
    --bg-header: #e75858ea;
}

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

.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #8BC6EC;
    background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 19%, #ffffff 39%, #ffffff 60%, #ffffff 80%, #ffffff 100%);

}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 350px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 20px;
}

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

.ceduceu {
    height: 80px;
}

.btn-pro-menu {
    font-size: 18px;
    font-weight: bold;
}

.btn-pro-menu:hover {
    background-color: var(--bg-purple);
    color: #ffffff;
    border-radius: 10px;
}

.on {
    background-color: var(--bg-purple);
    color: #ffffff;
    border-radius: 10px;
}

.subtitle {
    margin-left: 30px;
    margin-top: -20px;
    margin-bottom: 10px;
    color: #4b354e;
}

.senha {
    font-size: 12px;
    color: #4b354e;
    margin-left: 30px;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
}