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

body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  width: 90%;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

h1 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-box {
  margin-top: 20px;
}

label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 15px;
}

.input-file {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-file:hover {
  border-color: #764ba2;
}

.input-file:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

#NameText {
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}
