html, body {
    top: 0;
    margin: 0;

    height: 100%;
    width: 100%;

    background: #FFFFFF;
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 20%);

    font-family:Arial, Helvetica, sans-serif;
    color: #333333;
}

body {
    display: grid;
    place-items: center;
}

.container {
    width: 100%;
    max-width: 900px;

    background: #ececec;
    box-sizing: border-box;
    border-radius: 12px;
}

#log {
    overflow-y: auto;
    height: 500px;
}

form {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 20px;
    box-sizing: border-box;

    position: relative;

    &::after {
        content: '';

        position: absolute;
        bottom: 0;
        left: 10%;

        width: 80%;

        border-bottom: 1px solid #ffffff;
    }
}

svg {
    width: 30px;
    height: auto;

    color: inherit;
}

input {
    height: 40px;

    border-radius: 4px;

    outline: 0;
    border: 0;
}

input[type=password] {
    width: 100%;

    box-sizing: border-box;
    font-size: 16px;

    text-align: center;

    &:disabled {
        background: #d3d3d3;
    }
}

input[type=submit] {
    background: #8D82F2;
    color: #ffffff;

    padding: 0 15px;
    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    &:disabled {
        background: #6961b1;
        cursor: not-allowed;
    }
}

#status {
    padding: 20px;
    display: none;

    text-align: center;

    font-size: 12px;
    font-weight: bold;
}

#log {
    padding: 20px;
    padding-top: 0;
}

.entry {
    padding-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px solid #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    .timestamp {
        font-size: smaller;
    }

    .url {
        margin-top: 5px;
    }

    button {
        border: 0;
        outline: 0;
        
        background: none;

        cursor: pointer;
    }
}