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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

h1 {
  color: #1A2B3C;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

h2 {
  font-size: 18px;
  color: #1A2B3C;
  margin-bottom: 20px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1A2B3C;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #4A5F73;
  font-weight: 500;
  font-size: 14px;
}

.container {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(26, 43, 60, 0.12);
  max-width: 850px;
  width: 100%;
  padding: 40px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
}

header {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.08);
  width: 100%;
}

.background-header {
  background-color: #1B3262;
  padding: 1.5rem 0;
}

.logo-main {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}
.logo-main:hover {
  transform: scale(1.05);
}

.header-bottom {
  background-color: #F8FAFB;
  border-top: 1px solid #D1DBE5;
}

.link-header-bottom {
  color: #AE022D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.link-header-bottom:hover {
  color: #1B3262;
  text-decoration: underline;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.footer {
  background: #FFFFFF;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.footer-top {
  background-color: #F8FAFB;
  border-bottom: 1px solid #D1DBE5;
}
.footer-top p {
  margin: 0.25rem 0;
  color: #4A5F73;
}
.footer-top a {
  color: #AE022D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-top a:hover {
  color: #1B3262;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #EDF1F4;
}
.footer-bottom p {
  margin: 0;
  color: #4A5F73;
  font-size: 14px;
}
.footer-bottom a {
  color: #AE022D;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: #1B3262;
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mt-auto {
  margin-top: auto;
}

@media (max-width: 768px) {
  .logo-main {
    max-width: 180px;
  }
  .footer-top p,
  .footer-bottom p {
    font-size: 13px;
  }
}
.status-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 14px;
  display: none;
}
.status-message.error {
  background-color: #FFF0F1;
  color: #E63946;
  border-left: 4px solid #E63946;
  display: block;
}
.status-message.success {
  background-color: #F3F8E8;
  color: #28a745;
  border-left: 4px solid #28a745;
  display: block;
}
.status-message.info {
  background-color: #E8F7FD;
  color: #1B3262;
  border-left: 4px solid #1B3262;
  display: block;
}

.uppy-helper-text {
  font-size: 13px;
  color: #8B9CAD;
  margin-top: 8px;
}

.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #AE022D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

.loading-state {
  color: #8B9CAD;
  font-style: italic;
}

.error-state {
  color: #E63946;
  padding: 20px;
  background: #FFF0F1;
  border-radius: 8px;
  margin-bottom: 20px;
}

:global(.uppy-Dashboard) {
  font-family: inherit;
}

:global(.uppy-Dashboard-inner) {
  background: #F8FAFB;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.form-group {
  margin-bottom: 25px;
}

input[type=email],
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #D1DBE5;
  border-radius: 8px;
  font-size: 15px;
  color: #1A2B3C;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
input[type=email]:hover,
select:hover {
  border-color: #AE022D;
}
input[type=email]:focus,
select:focus {
  outline: none;
  border-color: #AE022D;
  box-shadow: 0 0 0 3px rgba(174, 2, 45, 0.15);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
select:disabled {
  background-color: #F5F7F9;
  color: #8B9CAD;
  cursor: not-allowed;
}

input[type=email]:invalid:not(:placeholder-shown) {
  border-color: #E63946;
}
input[type=email]:valid:not(:placeholder-shown) {
  border-color: #28a745;
}
input[type=email]:disabled {
  background-color: #F5F7F9;
  color: #8B9CAD;
  cursor: not-allowed;
}

select.has-value:not(:disabled) {
  border-color: #28a745;
}
/*# sourceMappingURL=main.css.map */
