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

.simple-monitor-protected-page{
    display: flex;
    background-color: #f0f0f0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.simple-monitor-protected-page-content{
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.simple-monitor-protected-page-content h1{
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-monitor-protected-page-content p{
    font-size: 1.2em;
    margin: 30px 0;
}

.simple-monitor-protected-page-content form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.simple-monitor-protected-page-content form input{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.simple-monitor-protected-page-content form button{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #7BC144;
    border-radius: 5px;
    background-color: #7BC144;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.simple-monitor-protected-page-content form button:hover{
    background-color: #fff;
    color: #000;
}

.simple-monitor-protected-page-content.error p{
    color: #c10000;
}

.simple-monitor-protected-page-content.error form input{
    border-color: #c10000;
}