﻿/* === Required Field Styling === */
.form-group.required .control-label:after {
    content: "*";
    color: red;
}

/* === Global Layout and Background === */
html, body {
    height: 100%;
    overflow: hidden;
    /* Radial gradient background */
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    /* Other background options for future reference:
    background: rgb(23,162,184);
    background: radial-gradient(circle, rgba(23,162,184,1) 44%, rgba(10,10,10,1) 82%);
    
    background: rgb(0,212,255);
    background: radial-gradient(circle, rgba(0,212,255,1) 5%, rgba(2,0,36,1) 23%, rgba(23,162,184,1) 100%);
    
    background: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
    background-color: #17a2b8;
    */
}

/* === Video Fullscreen Styling === */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/* === Video Content Overlay Styling === */
.content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
}

/* === Flexbox Centered Container === */
.flexbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
}

/* === Flexbox Item Styling === */
.flexbox-item {
    max-height: 50%;
    font-size: 15px;
}

/* === Fixed Width Box === */
.fixed {
    flex: none;
    max-width: 50%;
}

/* === Box Layout === */
.box {
    width: 100%;
    padding: 1em;
}
