* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header {
    text-align: left;
    margin-top: 15px;
	padding: 0 40px;
}

.header h1 {
	color: #0026BD;
    font-size: 1.3em;
	line-height: 1.3em;
}

.header p {color: #0026BD;}

.form-container {
    padding: 20px 40px;
}

.form-group label {
    display: block;
    color: #0026BD;
	font-weight: bold;
	font-size: 0.9em;
	width: 20%;
	float: left;
}

.required {
    color: #ef4444;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-left: 25%;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px;
    border: 2px solid #e5e7eb;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-weight: normal !important;
    width: 50% !important;
}

.radio-option:hover {
    border-color: #4f46e5;
    background-color: #f8fafc;
}

.radio-option input[type="radio"]:checked + span {
    color: #4f46e5;
    font-weight: 600;
}

.radio-option input[type="radio"]:checked {
    accent-color: #4f46e5;
}

input[type="text"], input[type="email"], textarea {
    padding: 0.15rem 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.25rem; 
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

input[type="text"], input[type="email"] {
	width: 75%;
	margin-left: 5%;
}

textarea {
    resize: vertical;
    min-height: 120px;
	width: 100%;
}

.file-upload {
    width: 100%;
    text-align: right;
    margin: 10px 0;
}

.attach-button {
    background-color: #0026BD;
    color: white;
    border: none;
    padding: 10px 19px;
    border-radius: 0.25em;
    cursor: pointer;
    font-size: 14px;
    line-height: 12px;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-remove {
    background: #ef4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.submit-btn {
    background-color: #0026BD;
    color: white;
    padding: 10px 0;
    border: none;
    border-radius: 0.25em;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 15%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
}

.success {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

#description-group { margin-top: 15px; }

label [for="description"] {
	width: 100%;
}

.explanation-text, .non-shs-tool-message {
	margin: 20px 0;
	color: #0026BD;
	font-size: 0.95rem;
}

.explanation-text { display: none; }

@keyframes spin {
    to { transform: rotate(360deg); }
}
