@font-face {
    font-family: 'Proxima Nova Semib';
    src: url("https://cdn.prod.website-files.com/665d7bea32165a0692a121a8/665d84b9616b4055b6713cb8_proxima-nova-Semib.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #fff;
    font-family: 'Proxima Nova Semib', sans-serif;
    font-weight: 600;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    font-size: x-small;
    margin-top: auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-container {
    min-width: 50%;
    max-width: 600px;
    margin: 40px auto;
    overflow: hidden;
}

.logo-header {
    padding: 30px 20px 10px 20px;
    text-align: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.logo-image {
    height: 160px;
    width: auto;
    margin-bottom: 10px;
}

.logo-subtitle {
    font-size: 18px;
    color: #666;
}

.form-container {
    padding: 40px;
}

.form-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-label {
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  background-color: #d78a30;
  border: 1px solid #d78a30;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #2a2d34;
  border-color: #2a2d34;
}

.btn-primary:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #d78a30;
  color: #d78a30;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: #d78a30;
  color: #fff;
}

.button-group {
    text-align: center;
    margin-top: 30px;
}

.dropzone {
    border: 2px dashed #c1c4cc;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dropzone:hover,
.dropzone.dragover {
    border-color: #d78a30;
    background-color: #fdf6ec;
}

.dropzone-icon {
    font-size: 32px;
    color: #c1c4cc;
    margin-bottom: 8px;
}

.dropzone-text {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.dropzone-sub {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.dropzone-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 12px;
    background: #f7f9ff;
    border-radius: 6px;
}

.dropzone-preview img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

.dropzone-preview .filename {
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropzone-preview .remove-file {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
}

.dropzone-preview .remove-file:hover {
    color: #d78a30;
}

.dropzone.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}