@font-face {
  font-family: Roboto;
  src: url("../font/Roboto/Roboto-Regular.ttf");
}

:root {
  --primary-color:#08619E;
}

* {
  font-size: 16px;
  font-family: Roboto;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

._full_screen {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
}

.header-img {
  width: 8rem;
}

._pf_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

._homepage_img {
  width: 15rem;
}

._404 {
  font-size: 2rem;
  opacity: 0.7;
  user-select: none;
}

.password-box {
  border: 1px solid var(--primary-color);
  outline: none;
  background-color: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 0.35rem;
}

.submit-btn {
  border: none;
  outline: none;
  background-color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  color:#fff;
  border-radius: 0.35rem;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}

#logo-download-page {
  display: none;
}

.download-items {
  padding: 1rem;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.download-item {
  margin: 1rem 0;
  display: flex;
  width: 60vw;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  background-color: #F8F9F9;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.preview {
  padding: 1rem;
}

.preview img {
  width: 100%;
  height: 6rem;
  object-fit: cover;
  padding: 0.3rem;
}

.dl-btn {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0.3rem;
}

.error {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: red;
  display: none;
}


.f-title {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  text-align: center;
}

._full_screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.download-links a {
  padding: 10px 15px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-links a:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .download-links {
    flex-direction: column;
  }

  .download-links a {
    width: 100%;
    text-align: center;
  }
}


.form-header{
  padding: 10px;
  margin-bottom: 1rem;
}