﻿.main-hearder {
    height: 20px;
    background: white;
    border-top: 7px solid black;
    border-radius: 6px 6px 0 0
}

#rc-imageselect {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

html {
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
}

#submitButton:enabled {
    color: black;
    background-color: #d3dce0;
    border: 1px solid #787878;
    cursor: pointer;
    font-size: 1.0em;
    font-weight: 600;
    padding: 4px;
    margin-right: 8px;
    width: auto;
}

#submitButton {
    color: #666;
    background-color: #d3dce0;
    border: 1px solid #787878;
    cursor: not-allowed; /* Set cursor style for disabled button */
    /* Other button styles */
    font-size: 1.0em;
    font-weight: 600;
    padding: 4px;
    margin-right: 8px;
    width: auto;
}

/* Optional: Change cursor style on hover */
    #submitButton:disabled:hover {
        cursor: not-allowed;
    }

/* Style for the input field */
.email-input-container {
    width: min(400px,95%);
    position: relative;
}

/* Style for the asterisk */
    .email-input-container::after {
        content: '*';
        position: absolute;
        top: 40px; /* Adjust vertical position */
        right: 1%; /* Adjust horizontal position */
        transform: translateY(-50%);
        color: red; /* Adjust color as needed */
        font-size: 35px;
    }

.unscribe_container input {
    padding: 0.4em;
    font-size: 0.8em;
    border: 1px solid #e0e0e0;
    display: block;
    margin-top: -0.8em;
}

#body {
    background-color: #efeeef;
    clear: both;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

    .site-title {
        color: #c8c8c8;
        font-family: Rockwell,Consolas,"Courier New",Courier,monospace;
        font-size: 2.3em;
        margin: 0;
    }

input, textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    font-size: 1.2em;
    margin: 5px 0 6px 0;
    width: 100%;
}

.loader {
    border: 6px solid #4CAF50; /* Green loader color */
    border-radius: 50%;
    border-top: 6px solid #ffffff; /* White color to create the spinner effect */
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite; /* Apply animation to the loader */
    display: none; /* Initially hidden */
    margin-left: 4px !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}