* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.apmui-header {
    display: block;
    width: 100%;
    background-color: #8626C3;
    min-height: 80px;
    border-top: 6px solid #8626C3;
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 rgba(0, 0, 0, 0.15);
    z-index: 50;
}

.apmui-header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.center-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px - 60px);
    background-image: url('dashboard.png');
}

.logo {
    margin-top: 5px;
    width: 200px;
    height: 65px;
}

.header-title {
    color: white;
    font-size: 28px;
    margin-left: 20px;
    padding-top: 10px;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "DejaVu Sans", Roboto, Arial, sans-serif;
}

.login-box {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 550px;
    height: 400px;
    text-align: center;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "DejaVu Sans", Roboto, Arial, sans-serif;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-title {
    font-size: 23.8px;
    margin-bottom: 30px;
    color: #333;
}

.login-form {
    text-align: left;
    display: flex;
    flex-direction: column;
}

input[type="text"], input[type="password"] {
    width: 400px;
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="password"] {
    width: 400px;
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "DejaVu Sans", Roboto, Arial, sans-serif;
    -webkit-text-security: disc;
    text-security: disc;
}

input[type="password"]::-webkit-input-placeholder {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "DejaVu Sans", Roboto, Arial, sans-serif;
}

input[type="password"]:-webkit-autofill {
    -webkit-text-security: disc !important;
}

button {
    padding: 10px;
    width: 150px;
    background-color: black;
    color: white;
    font-weight: bold;
}

button:hover {
    background-color: #333;
    cursor: pointer;
}

.button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 14px;
    color: white;
    background-color: black;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "DejaVu Sans", Roboto, Arial, sans-serif;
}

.pulsating-circle-platforms {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 30px;
 
    &:before {
        content: '';
        position: relative;
        display: block;
        width: 300%;
        height: 300%;
        box-sizing: border-box;
        margin-left: -100%;
        margin-top: -100%;
        border-radius: 45px;
        background-color: #8626C3;
        animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }
 
    &:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: #8626C3;
        border-radius: 15px;
        box-shadow: 0 0 8px rgba(0, 0, 0, .3);
        animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }
 
    50% {
        transform: scale(0.99);
    }
 
    80%,
    100% {
        opacity: 0;
    }
}
 
@keyframes pulse-dot {
    0% {
        transform: scale(.8);
    }
 
    50% {
        transform: scale(1);
    }
 
    100% {
        transform: scale(.8);
    }
}