﻿*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'hyundaisanstext-regular';
    src: url('../assets/font/hyundaisanstext-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'hyundaisanstext-regular' !important;
    overflow-x: hidden;
}

.container {
    height: 100vh;
    padding: 10px;
}

.pageHeader {
    box-shadow: 0 1px 3px rgba(216, 209, 200, 0.7);
}

#logoContainer {
    width: 200px;
    padding: 10px 0;
    margin-left: 30px;
}

.titleLine {
    padding: 10px 30px;
    color: #002C5F;
}

.titleLineLabel {
    font-size: 1.6em;
    font-weight: 500;
}

.contentLine {
    padding: 10px 30px;
    background-color: #E4DCD3;
}

.contentText {
    font-weight: 500 !important;
}

.contentLineLabel {
    font-size: 1em;
    text-align: justify;
}

.formLine {
    padding: 10px 30px;
}

.radioLabel, .text-danger, .form-control {
    font-size: .7em !important;
    font-family: 'hyundaisanstext-regular' !important;
}

.control-label {
    font-size: 1em !important;
    font-weight: bolder;
}

.requiredMarker {
    color: red;
}

/*Preloader*/

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); /* Light gray border */
    border-top: 7px solid #333; /* Darker border for the spinning effect */
    border-radius: 50%;
    width: 50px; /* Size of the spinner */
    height: 50px; /* Size of the spinner */
    animation: spin 1s linear infinite; /* Animation for spinning */
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -20px; /* Center the spinner */
    margin-top: -20px; /* Center the spinner */
    z-index: 1000; /* Ensure it appears above other content */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}