﻿::-webkit-input-placeholder { /* Safari, Chrome and Opera */
    color: darkgray;
    font-style: italic;
    font-family: Arial;
    letter-spacing: 1.05pt;
}

:-moz-placeholder { /* Firefox */
    color: darkgray;
    font-style: italic;
    font-family: Arial;
    letter-spacing: 1.05pt;
}

:-ms-input-placeholder { /* IE 10+ */
    color: darkgray;
    font-style: italic;
    font-family: Arial;
    letter-spacing: 1.05pt;
}

:-ms-input-placeholder { /* Edge */
    color: darkgray;
    font-style: italic;
    font-family: Arial;
    letter-spacing: 1.05pt;
}

::placeholder { /* Default */
    color: darkgray;
    font-style: italic;
    font-family: Arial;
    letter-spacing: 1.05pt;
}

.defaultfont {
    /*font-family: Arial;*/
    font-family: Arial;
    font-size: 11pt;
    color: #484848;
    letter-spacing: 1.1pt;
} 

.dvDivDefault, defaultfont {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    width: 98%;
    text-align: center;
    max-width: 800px;
}

.pageHeaderText, defaultfont {
    font-size: 22pt;
    font-weight: bold;
    color: royalblue;
}

.pageHeaderInfoText, defaultfont {
    font-size: 12.5pt;
    color: darkslategrey;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    margin-bottom: 4px;
}
.usermessage, defaultfont {
    width: 100%;
    font-size: 11pt;
    font-weight: normal;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    color: #484848;
    letter-spacing: 1.2pt;
}

.dvusermessage, dvDivDefault {
    border-width: 2.5px;
    border-style: solid;
    border-radius: 2px 2px 2px 2px;
    border-color: dodgerblue;
    padding: 8px 8px 8px 8px;
    margin-top: 4px;
    margin-bottom: 4px;
    text-align: center;
    background-color: white;
}

.dvHeader {
    width: 98%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0px 0px 0px 0px;
    color: white;
    font-size: 11pt;
    letter-spacing: 0px;
}

.dvHeaderExp {
    font-size: 12pt;
    font-weight: bold;
    padding-right: 4px;
}

.fade-in {
    animation: fadeIn 4s;
}

.fade-in-x {
    animation: fadeIn 4s;
}

.fade-in-ahq {
    animation: fadeIn 10s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.regItem {
    text-align:left;
    /*grid-column: 2 / span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);*/
}

.txtStandard, defaultfont {
    width: 99%;
    border: none;
    border-radius: 0px;
    background-color: #F0F0F0;
    color: #484848; 
    padding: 8px;
}

.ddlStandard {
    width: 100%;
    border: 1px solid gray;
    border-radius: 8px;
    border-radius: 0px;
    padding: 6px;
    color: #484848;
    letter-spacing: 1.15pt;
}

.btnStandard, defaultfont {
    height: 40px;
    width: 100%;
    min-width: 300px;
    /*max-width: 400px;*/
    align-self: center;
    background-color: #54acd1;
    font-weight: bold;
    font-size: 11.5pt;
    letter-spacing: 2.5pt;
    border-style: none;
    color: white;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

    .btnStandard:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }