﻿
:root {
    --brand: #00818A; /* primary */
    --brand-hover: #006870; /* hover */
    --text-muted: #505050;
    --border: #605e5c;
}


body {
    font-family: Segoe UI, SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-image: url(../../Images/CESvotes-background-image.png) !important;
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 50%;
    font-size: 14px;
}


.module.form-module .form {
    background: #fff;
    border-radius: 4px;
    padding: 30px; 
    border: 1px solid #ddd;
    width: 350px;
}


    .module.form-module .form form {
        margin: 0 auto;
        text-align: left; /* inputs/labels align like flow */
    }


.ers-logo {
    text-align: center;
}

    .ers-logo img {
        display: inline-block;
        max-width: 240px;
        width: 100%;
        height: auto;
    }

.heading h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}


label {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: .5rem;
}

input[type="email"] {
    height: 45px; 
    width: 100%;
    border-radius: .3rem;
    border: 1px solid var(--border);
    padding: 6px 20px 6px 20px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

    input[type="email"]::placeholder {
        color: #6a6a6a;
        opacity: 1;
    }


.btn-primary {
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
    width: 100%;
    height: 35px;
    border-radius: .3rem;
    padding: 10px 16px 10px 16px;
    font-size: 12px;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--brand-hover) !important;
        border-color: var(--brand-hover) !important;
    }


    .btn-primary.mt-3 {
        margin-top: 10px !important;
    }

.ers-logo + .text-center {
    margin-top: 8px;
}


a:focus {
    outline: 3px solid #000;
}

input[type="email"]:focus {
    outline: none;
    border-width: 2px;
    border-color: var(--border);
}



