@font-face {
    font-family: 'Dharma Gothic E';
    src: url('path/to/DharmaGothicE-Bold.woff2') format('woff2'),
         url('path/to/DharmaGothicE-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1C2021;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

h1 {
    font-family: 'Dharma Gothic E', sans-serif;
    font-weight: bold;
    color: #63C127;
}

form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    color: #1C2021;
    font-weight: bold;
}

input, textarea, button {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    height: 100px;
}

button {
    background-color: #63C127;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

button:hover {
    background-color: #55a020;
}

button .spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo {
    margin-bottom: 20px;
    max-width: 100px;
    max-height: 100px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    min-height: 100vh;
}

.file-input {
    display: none;
}

.file-label {
    background-color: #63C127;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.file-label:hover {
    background-color: #55a020;
}

.file-warning {
    font-size: 14px;
    color: #595959;
    margin-top: 5px;
}
