/* /delete-account-request.css */

.delete-account-container {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid #282828; /* 주퍼라운지 어두운 테두리 */
  border-radius: 0.5rem;
  background-color: #0A0A0F; /* 주퍼라운지 기본 배경 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.account-delete-input {
  width: 90%;
  padding: 0.625rem;
  margin-top: 0.625rem;
  border: 1px solid #C8A15D; /* 주퍼라운지 포인트 */
  border-radius: 0.375rem;
  font-size: 1rem;
  background-color: #0A0A0F;
  color: #FFFFFF;
}

.account-delete-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #282828; /* 비활성 상태 */
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.375rem;
  cursor: not-allowed;
  transition: background-color 0.3s;
}

.account-delete-button:enabled {
  background-color: #C8A15D; /* 활성 상태 색상 */
  color: #0A0A0F;
  cursor: pointer;
}

.account-delete-button:enabled:hover {
  background-color: #E5C07B;
}

.account-delete-message {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #FFFFFF;
}

/* ✅ 모바일 반응형 */
@media (max-width: 768px) {
  .delete-account-container {
    margin: 1.5rem 1rem;
    padding: 1.5rem;
  }

  .account-delete-input {
    font-size: 0.95rem;
  }

  .account-delete-button {
    font-size: 0.95rem;
  }

  .account-delete-message {
    font-size: 0.8rem;
  }
}
