body {
  font-family: sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 500px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.emblem {
  width: 80px;
  margin-bottom: 10px;
}

h1 {
  font-size: 18px;
  margin: 5px 0;
}

.subtitle {
  margin-top: 0;
  font-size: 14px;
  color: #777;
}

h2 {
  margin-top: 20px;
  font-size: 16px;
  color: #1c3b70;
}

.desc {
  font-size: 14px;
  margin: 5px 0;
}

.service {
  font-weight: bold;
  color: #1c3b70;
  margin-bottom: 15px;
}

.card {
  background: #1c3b70;
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.info label {
  font-size: 13px;
  display: block;
  text-align: left;
  margin: 10px 0 2px;
}

.field {
  background: #f1f5f9;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 5px;
}

.field button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input[type="text"],
form input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 12px;
  background: #1c3b70;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background: #16325c;
}

#status {
  margin-top: 10px;
  font-size: 14px;
}
.emblem_block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px; 
  margin-top: 30px;
}

.emblem_block img {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}
#custom-alert {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 1000;
  display: none;
  text-align: center;
}

#custom-alert.show {
  display: block;
}

#custom-alert button {
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #2c5aa0;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#custom-alert button:hover {
  background-color: #1d4076;
}
.emblem_block .emblem_img_stamp{
  max-width: 140px;
}