* {
    box-sizing: border-box;
    margin: 0px;
    user-select: none;
    -webkit-user-drag: none;
    font-family: sans-serif;
}

@font-face {
    font-family: 'candara';
    /* Define a name for the font */
    src: url('/fonts/CANDARA.woff') format('woff');
}

body {
    height: 100dvh;
    width: 100vw;
    position: relative;
    display: grid;
    overflow-x: hidden;
    overflow-y: auto;
}

h1,
h2 {
    font-size: 22px;
    color: #232323;
}

h2 {
    font-size: 20px;
}

.content {
    height: 100%;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

/* #################################################################################*/
/*@SECTION: Input Component Styles*/
/* #################################################################################*/
.input-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: sans-serif;
    letter-spacing: 0.9px;
}

.input-box {
    position: relative;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid lightgray;
    display: flex;
    align-items: center;
}

.input-box:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
    align-items: start;
}

.input-box:has(.input:not(:placeholder-shown)) {
    align-items: start;
}

.input-box>.input-label {
    position: absolute;
    margin: 0px 10px;
    padding: 0px 5px;
    font-size: 16px;
    color: gray;
    cursor: text;
    transition: 0.5s ease;
    background-color: white;
    z-index: 1;
}

.input-box:focus-within .input-label {
    transform: translateY(-50%);
    font-size: 14px;
}

.input-box .input:not(:placeholder-shown)+.input-label {
    transform: translateY(-50%);
    font-size: 14px;
}

.input-box>.input-label>.required {
    color: red;
}

.input-box>.input {
    height: 100%;
    width: 100%;
    color: dimgray;
    border: none;
    background: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.9px;
}

.input-box>.input:focus-visible {
    outline: none;
}

.input-grid>.error-msg {
    color: red;
    font-size: 12px;
    grid-column: 1 / span 2;
    padding: 5px;
    visibility: hidden;
}