* {
    background-color: var(--bg-color);
}

.remhead {
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    top: 110px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
    color: var(--button-color);
    font-weight: bolder;
}



.formtologin {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: 250px;
    gap: 30px;
}

.formtologin #email {
    border-radius: 10px;
    height: 40px;
    width: 300px;
    background-color: var(--button-color);
    border: none;
}

.formtologin #email::placeholder {
    color: var(--text-color);
    padding: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
}

.formtologin #pass {
    border-radius: 10px;
    height: 40px;
    width: 300px;
    background-color: var(--button-color);
    border: none;
}

.formtologin #pass::placeholder {
    color: var(--text-color);
    padding: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
}

.button {
    display: inline-block;
    height: 40px;
    width: 200px;
    line-height: 40px;
    border-radius: 10px;
    background-color: var(--button-color); /* matches your signbutton background */
    border: 2px solid var(--border-color);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    cursor: pointer;
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(203, 122, 92, 0.35);
}

.actnow p {
    color: var(--button-color);
    font-family: sans-serif;
}

.actnow a {
    text-decoration: none;
    padding: 5px;
}

.actnow {
    position: relative;
    top: 50px;
}